时间:2023-07-24 02:24:02 | 来源:网站运营
时间:2023-07-24 02:24:02 来源:网站运营
手把手第五篇:简单编写小程序的 CSS 样式:在上期文章中,我们主要聊了聊如何写出一个简单的小程序。既然聊到了编写小程序,那不得不提的就是如何编写其中的 CSS 样式内容,一起来看看吧。本期文章属于《手把手系列教学》的第五篇,如果你还不太了解这一系列,可以点击 这里 查看详情。
由于 FinClip 小程序保持了与微信小程序的高度统一,来降低开发者的学习或迁移门槛,事实上你也可以直接在 FIDE 中编辑基于微信小程序的项目内容,或者将基于微信小程序编辑的内容进行校验后,同步上传在 FinClip 之中。
.container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 200rpx 0; box-sizing: border-box;}
FIDE 初始化小程序页面已经给最外层标签添加了 container 类,此时在 container 类名下添加一个 color 样式:color: #ff0000;
保存后页面重新渲染,文字变为红色:<view class="container unique-class">index页</view>.unique-class{ font-size: 66px;}
此时 page1 页同样添加class:“unique-class”,样式并没有受到影响<view class="container unique-class" style="color: {{fontColor}}"> index页</view>
在页面 data 中添加 fontColor 变量,赋值为想要的颜色Page({ data: { motto: 'Hello World', fontColor: '#10aeff' }})
同样,插值变量的方式也可以运用到 class 中以达到相似的效果。合理使用 rpx 会让小程序体验感更好。
/** common.wxss **/.small-p { padding:5px;}/** app.wxss **/@import "common.wxss";.middle-p { padding:15px;}
<view> <swiper indicator-dots="{{true}}" autoplay="{{true}}" style="width: 750rpx; height: 750rpx; text-align: center;"> <swiper-item> <image src="/assets/images/logo.png"></image> </swiper-item> <swiper-item> <image src="/assets/images/logo2.png"></image> </swiper-item> <swiper-item> <image src="/assets/images/logo3.png"></image> </swiper-item> </swiper></view>
上面代码中,<swiper> 组件就是轮播组件,里面放置了三个 <swiper-item> 组件,表示有三个轮播项目,每个项目就是一个 <image> 组件。关键词:程序,样式,编写,简单,把手