微信小程序笔记
Posted 明了胜于隐晦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序笔记相关的知识,希望对你有一定的参考价值。
一个简单的开始页面
3-2 官方种子项目介绍与小程序的文件结构
1.以ihhone6,750px的像素设计最佳;750x1334;
2.设置style的两种方式:动态样式写在style里,静态写在class样式表里。
(1)在wxml文件中设置
1 <image style="width:200rpx;height:200rpx" src="/images/2013516191254219.jpg"></image>
(2)在xcss文件中设置
.user-avatar{
width:200rpx;
height:200rpx;
margin-top: 100rpx;
}
1 <!--wxml是编写小程序骨架--> 2 <!--<div>--> 3 <view> 4 <image class="user-adatar" src="/images/2013516191254219.jpg"></image> 5 <text>hello</text> 6 <view> 7 <text>开启小程序之旅</text> 8 </view> 9 </view>
以上是关于微信小程序笔记的主要内容,如果未能解决你的问题,请参考以下文章