国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

node.js|vue.js|jquery|angularjs|React|json|js教程|

服務(wù)器之家 - 編程語言 - JavaScript - 微信小程序?qū)崿F(xiàn)音樂播放頁面布局

微信小程序?qū)崿F(xiàn)音樂播放頁面布局

2021-12-09 15:18The pure land JavaScript

這篇文章主要為大家詳細(xì)介紹了微信小程序?qū)崿F(xiàn)音樂播放頁面布局,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)音樂播放頁面的布局,供大家參考,具體內(nèi)容如下

1.效果圖如下,點(diǎn)擊播放按鈕后,光碟轉(zhuǎn)動,播放按鈕變?yōu)闀和0粹o;播放中點(diǎn)擊暫停,光碟復(fù)位,暫停按鈕恢復(fù)為播放按鈕。

本文僅提供樣式布局,其他具體響應(yīng)不作介紹

微信小程序?qū)崿F(xiàn)音樂播放頁面布局

2.樣式布局代碼

wxml:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<view class="page_music">
  <view class='icon {{isPlay?"rotateAu":""}}' mode="widthFix">
   
  </view>
  <view class="tools">
    <view class="last" bindtap="last">
    </view>
    <view class='{{isPlay?"pause":"play"}}' bindtap="play">
    </view>
    <view class="next" bindtap="next">
    </view>
  </view>
  <view class="volume">
    <view class="volumeIcon">
    </view>
    <view class="sl">
    <slider min='0' max='10' step="1" value="0" bindchange="slide"/>
    </view>
  </view>
</view>

wxss:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.page_music{
  position: absolute;
  width: 100%;
  height: 80%;
}
.icon{
  position: relative;
  width: 500rpx;
  height: 500rpx;
  top:5%;
  left: 125rpx;
  background-image: url(""); /*放入光碟圖片*/
  background-size: 100% 100%;
  background-repeat:no-repeat;
  background-position: center;
}
.tools{
  position: relative;
  width: 80%;
  height: 10%;
  top: 10%;
  left: 10%;
}
.last{
  width: 100rpx;
  height: 100rpx;
  position: absolute;
  left: 0;
  top:0;
  background-image: url(""); /*放入上一首圖標(biāo)*/
  background-size: 100% 100%;
  background-repeat:no-repeat;
  background-position: center;
}
.play{
  width: 100rpx;
  height: 100rpx;
  position: absolute;
  left: 42%;
  top:0;
  background-image: url(""); /*放入播放圖標(biāo)*/
  background-size: 100% 100%;
  background-repeat:no-repeat;
  background-position: center;
}
.pause{
  width: 100rpx;
  height: 100rpx;
  position: absolute;
  left: 42%;
  top:0;
  background-image: url(""); /*放入暫停圖標(biāo)*/
  background-size: 100% 100%;
  background-repeat:no-repeat;
  background-position: center;
}
.next{
  width: 100rpx;
  height: 100rpx;
  position: absolute;
  right: 0;
  top:0;
  background-image: url(""); /*放入下一首圖標(biāo)*/
  background-size: 100% 100%;
  background-repeat:no-repeat;
  background-position: center;
}
.volume{
  position: relative;
  width: 80%;
  height: 10%;
  top: 20%;
  left: 10%;
}
.volumeIcon{
  position: absolute;
  left: 0;
  width: 80rpx;
  height: 80rpx;
  top:0;
  background-image: url(""); /*放入音量圖標(biāo)*/
  background-size: 100% 100%;
  background-repeat:no-repeat;
  background-position: center;
}
.sl{
  position: absolute;
  right: 0;
  width: 80%;
  height: 100%;
  top: 0;
  background-image: url(""); /*放入滑動條背景圖片*/
  background-size: 100% 100%;
  background-repeat:no-repeat;
  background-position: center;
}
.rotateAu{
  animation: rotate 3s linear infinite;
 }
 @keyframes rotate{
  from{transform: rotate(0deg)}
  to{transform: rotate(360deg)}
 }

js:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Page({
 
  data:{
    isPlay:false,
  },
  play:function(e){
    if(this.data.isPlay==true)
    {
      this.setData({
        isPlay:false
      })
    }
    else
    {
      this.setData({
        isPlay:true
      })
    }
  }
})

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。

原文鏈接:https://blog.csdn.net/weixin_43900888/article/details/110945476

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 亚洲人成网站在e线播放 | 久久久精 | 久久久久成人精品免费播放动漫 | 久久久久久久国产精品 | 日韩欧美一区二区三区 | 免费视频二区 | 日韩天堂| 亚洲一区二区久久 | 久久在线视频 | 国产精品不卡 | 在线观看国产精品一区 | 一级黄片毛片免费看 | 亚洲字幕成人中文在线观看 | 中文字幕亚洲一区二区三区 | 日本精品视频在线观看 | 香蕉福利视频 | 日本中文字幕在线观看 | 久久久久久中文字幕 | 国产精品亚洲一区 | 午夜精品网站 | 婷婷在线视频 | 福利久久久 | 欧美成人毛片 | 日韩精品| 在线播放高清视频www | 无码日韩精品一区二区免费 | 中文字幕一区二区三区精彩视频 | 中文字幕久久精品 | 精品无人区一区二区三区动漫 | 成人情趣视频 | 欧美精品黄色 | 偷拍一区二区三区 | 国产一级视频在线观看 | 久久久成人精品 | 一区视频 | 99久久综合精品五月天 | 国产一极片 | www.欧美| 久久久久久久国产精品 | 欧美一区二区三区黄色 | 亚洲成av人影片在线观看 |