uniapp实现微信一键登录按钮样式,如何开发胶囊按钮的样式

avatar
作者
猴君
阅读量:3

效果图:
在这里插入图片描述

关键点:让圆角的值变成高度的一半。

核心样式:

.content .btn{ 		width: 600rpx; 		border-radius: 300rpx; 		background-color: rgb(62,204,97); 		color: white; 		font-weight: 500; 	} 

完整代码:

 <template> 	<view class="content"> 		<h1 class="title">宝宝相册</h1> 		<image class="img" src="../../static/boy1.png"></image> 		<button class="btn">微信一键登录</button> 		<view>我已阅读并同意用户注册协议和隐私政策</view> 	</view> </template>  <style scoped> 	.content { 		display: flex; 		flex-direction: column; 		align-items: center; 	}  	.content .title { 		font-size: 34rpx; 		font-weight: 300; 		margin: 30rpx 0; 	}  	.content .img { 		width: 80%; 		margin-bottom: 30rpx; 		border-radius: 3%; 	} 	 	.content .btn{ 		width: 600rpx; 		border-radius: 300rpx; 		background-color: rgb(62,204,97); 		color: white; 		font-weight: 500; 	} </style> 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!