.slideshow {
width: 96%
border-radius: 25rpx
margin: 20rpx auto
}
效果如下:
如图,轮播图是矩形,没有理想中的圆角。
修改如下:
.slideshow {
width: 96%
border-radius: 50rpx
overflow: hidden
margin: 20rpx auto
}
效果如下:
如图所示,轮播图为圆角矩形。
重点在:overflow: hidden
也许你迷茫,但是我想说,在你迷茫的同时,保持本心,过好今天就好。在微信小程序中,组件 text 用来显示文本,基本使用代码如下:
测试使用
1 基本样式设置
基本使用还是比较简单的,下面咱们来论述一下文本样式的设置,首先是给他设置一个 class
测试使用
然后在对应的 wxss 文件中编写样式,对于字体来说 常用的就是字体大小、颜色、粗细的配置
.text { /* 字体大小 */ font-size: 20px/* 字体颜色 */ color: red/* 字体风格-粗细 */ font-weight: bold}
font-weight:设置文本字体的粗细。取值范围为100-900,取值:mormal:正常大小相当于400。bold :粗体,相当于700
2 边框设置
border-width:设置边框宽度:常用取值:medium:默认值,相当于3px。thin:1px。thick:5px。不可以为负值。
border-color:设置边框颜色。
border-top:设置顶部边框。
border-top-width,border-top-style,border-top-color 分别设置 宽度,样式以及颜色
border-right:设置右边框。
border-bottom:设置底边框。
border-left:设置左边框
border-radius:设置对象使用圆角边框。取值为数字或者百分比。
border-style(边框样式)常见样式有: (border-color,border-width) 边框相关设置
dashed(虚线)| dotted(点线)| solid(实线)。
.text { /* 字体大小 */ font-size: 20px/* 字体颜色 */ color: red/* 字体风格-粗细 */ font-weight: boldborder-color: blueborder-width:3pxborder-style: solid}
例如还可以设置一下边框圆角以及内外边距
.text { /* 字体大小 */ font-size: 20px/* 字体颜色 */ color: red/* 字体风格-粗细 */ font-weight: boldborder-color: blueborder-width:3pxborder-style: solid/* 内边距 */ padding: 10px/* 外边距 */ margin: 10px /* 设置边框圆角 从左向右 */ /* 左上角 右上角 右下角 左下角 */ border-radius: 2px 4px 10px 20px}
3 设置斜体
通过font-style来设置,取值:normal 正常的字体, italic 斜体字, oblique 倾斜的字体。
.text2{/*文字排版--斜体*/font-style:italic}
4 设置下划线/*下划线*/text-decoration:underline/*删除线*/text-decoration:line-through
5 长文本段落的排版.text2 { /*段落排版--首字缩进*/ text-indent: 2em/*段落排版--行间距(行高)*/ line-height: 1.5em/*段落排版--中文字间距*/ letter-spacing: 1px/*字母间距*/ word-spacing: 4px/*文字对齐 right 、left 、center */ text-align: left}
<view>父组件msg的值:{{msg}}</view>
<Header msg="{{msg}}" bindchildChange="change" ></Header>
<block wx:for="{{list}}" wx:key="index">
<ListItem rItem="{{item}}" bindchildGO="childGO"></ListItem>
</block>
<Header msg="{{msg}}"></Header>
/* pages/list/list.wxss */
.item{
padding: 5px
}
img1{
width: 120px
height: 120px
border-radius: 5px
}
.row{
flex: 1
height: 120px
}
.title{
padding: 10px
}
.dec{
padding:0 10px
}
// pages/list/list.js
Page({
/**
* 页面的初始数据
*/
data: {
msg:"你是我的小宝贝",
list:[{
url:"https://www.baidu.com",
imageUrl:"https://img1.baidu.com/it/u=2519912129,4264910682&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=500",
title:"我的小可爱",
content:"可爱可爱"
},
{
imageUrl:"https://img1.baidu.com/it/u=931545919,4030748642&fm=253&fmt=auto&app=138&f=JPEG?w=306&h=459",
title:"我的小可爱",
content:"mao可爱可爱"
},]
},
change:function(str){
this.setData({
msg:str.detail
})
},
childGO(e){
wx.navigateTo({
url: '/pages/webpage/webpage?url='+e.detail,
})
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})
"usingComponents": {
"ListItem":"/components/ListItem/ListItem",
"Header":"/components/Header/Header"
}
<view class="flex item" bindtap="go" data-url="{{rItem.url}}">
<image class="img1" src="{{rItem.imageUrl}}"></image>
<view class="row">
<view class="title">{{rItem.title}}</view>
<view class="dec">{{rItem.content}}</view>
</view>
</view>
.img1{
width: 120px
height: 120px
display: block
border-radius: 5px
}
.item{
padding: 5px
}
.row{
flex: 1
height: 120px
}
.title{
padding: 10px
}
.dec{
padding: 0 10px
}
.flex{
display: flex
}
.flex-between{
justify-content: space-between
}
.flex-center{
justify-content: center
align-items: center
}
// components/ListItem/ListItem.js
Component({
/**
* 组件的属性列表
*/
properties: {
/* 子组件用properties来接收对象 */
rItem:{
/* 如果没有传入对象显示的默认值 */
type:Object,
value:{
imageUrl:'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fpic1.zhimg.com%2Fv2-a7c5da54b8008049fe43089752c74ce2_r.jpg%3Fsource%3D1940ef5c&refer=http%3A%2F%2Fpic1.zhimg.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1648446806&t=9f16e5a2c12d51ba32169795e4d339f7',
title:'我的小可爱',
content:'我的小可爱我的小可爱我的小可爱我的小可爱'}
}
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
go(e){
console.log(e)
let url = e.currentTarget.dataset.url
this.triggerEvent('childGO',url)
}
}
})
<view class="t" bindtap="handler" >{{msg}}</view>
.t{
font-size: 25px
padding: 10px
text-align: center
}
// components/Header/Header.js
Component({
/**
* 组件的属性列表
*/
properties: {
msg:{
type:String,
value:'我是Header'
}
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
handler:function(){
/* 直接改子组件里的msg父组件不会同步所以不能直接改 */
/* this.setData({
msg:'你好'
}) */
this.triggerEvent('childChange','你可真坏啊')
},
}
})
<button bindtap="getuserInfo" plain type="primary">获取用户信息</button>
<image src="{{touxiang}}" class="t"></image>
<view>{{nicheng}}</view>
<!-- 想要已进入页面就显示头像和昵称使用 open-type 标签 -->
<open-data type="userAvatarUrl"></open-data>
<open-data type="userNickName"></open-data>
<!-- 使用语言 -->
<open-data type="userLanguage"></open-data>
data: {
msg: 'csgo',
touxiang: "",
nicheng: ""
},
getuserInfo() {
wx.getUserProfile({
desc: '亲爱的宝贝', // 声明获取用户个人信息后的用途,后续会展示在d窗中,请谨慎填写
success: (res) => {
console.log(res)
let {
userInfo: {
avatarUrl,
nickName
}
} = res
this.setData({
nicheng: nickName,
touxiang: avatarUrl
})
}
})
},
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)