- css3样式?
为什么在模拟器上那个图像可以旋转,在真机上就不转了。。。 .rotation{ /* rotation表示动画效果旋转linear(始终点)12s表示执行完的时间,linear匀速 infinite无限循环 */ animation: rotation 12s linear infinite; -moz-animation: rotation 12s linear infinite; -webkit-animation: rotation 12s linear infinite; -o-animation: rotation 12s linear infinite; } .rotation-paused{ animation-play-state: paused; -moz-animation-play-state: paused; -webkit-animation-play-state: paused; -o-animation-play-state: paused; } @keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } <view class='player-info'> <view class="player-disc {{isPlaying? 'play': ''}}"> <image class="player-img rotation {{isPlaying? '':'rotation-paused'}}" src="{{picUrl}}"/> </view> </view> // 其中isPlaying是判断是否旋转的标志
2019-12-27 - json对象转js对象?
handleToMusiclist(){ wxnavigateTo({ //保留当前页面,跳转到应用内的某个页面 // ES6语法,用``${} 反单引号完成拼接字符串的功能 url`../../pages/showmusic/showmusic?musicId = ${thispropertiesplaylistid }) onLoadfunctionoptions console.log(options) console.log(options.musicId) 打印的是这个 {"musicId ": " 2482210411"} undefined 定义了一个点击事件函数,页面跳转。到了那个接受数据时,成了json对象,无法.调用,怎么转为js对象啊,大佬们指教一下,谢谢!
2019-12-22