微信小程序大转盘完整代码
效果图
wxml片段
<!--index.wxml-->
<view class="container">
<image src='/images/bg_1.jpg' class="bg_1"></image>
<image src='/images/bg_2.png' animation="{
{rotate}}" class="bg_2"></image>
<image src='/images/start.png' bindtap="start" class="start"></image>
</view>
wxss内容
/**index.wxss**/
.bg_1{
width: 650rpx;
height: 651rpx;
position: relative;
top: -200rpx;
}
.bg_2{
width: 514rpx;
height: 514rpx;
position: absolute;
top: 60rpx;
}
.start{
width: 134rpx;
height: 163rpx;
position: absolute;
top: 220rpx;
}