javascript - 移动端css动画播放状态暂停在ios不起作用 animation-play-state
问题描述
移动端css动画播放状态暂停在ios不起作用 animation-play-state
我想点击图片图片静止,再点一下图片继续旋转。在安卓手机上可以实现,但是在ios,第一次点击图片继续旋转,没有静止动作,反而在第二点击的时候,图片在第一次点击的位置闪一下,继续旋转。
<style type='text/css'>#wls .musicCon{width: 35px;height: 35px;position:fixed;top:15px;right:15px;z-index: 9999; } img.rotate{ animation:spin 4s infinite linear; -moz-animation:spin 4s infinite linear; -webkit-animation:spin 4s infinite linear;-webkit-animation-play-state: running; -moz-animation-play-state: running; animation-play-state: running; -ms-animation-play-state: running; -o-animation-play-state: running;}@keyframes spin { 0%{ transform:rotate(0deg); } 100%{ transform:rotate(360deg); }}@-o-keyframes spin { 0% {-o-transform: rotate(0deg); } 100%{ -o-transform:rotate(360deg); }}@-moz-keyframes spin { 0% {-moz-transform: rotate(0deg); } 100%{ -moz-transform:rotate(360deg); }}@-webkit-keyframes spin { 0% {-webkit-transform: rotate(0deg); } 100%{ -webkit-transform:rotate(360deg); }} img.pauseWalk { animation:spin 4s infinite linear; -moz-animation:spin 4s infinite linear; -webkit-animation:spin 4s infinite linear; -webkit-animation-play-state: paused; -moz-animation-play-state: paused; animation-play-state: paused; -ms-animation-play-state: paused; -o-animation-play-state: paused;}</style><body id='wls'> <img src='https://www.haobala.com/wenda/imgage/music.png' /> <audio autoplay='autoplay' loop='loop' id='bgm'> <source src='https://www.haobala.com/wenda/music/bgm.mp3' type='audio/mpeg'> <source src='https://www.haobala.com/wenda/music/bgm.ogg' type='audio/ogg'></audio><script> var num=1; $('#wls .musicCon').bind('click',function(){if(num==1){ $(this).removeClass('rotate'); $(this).addClass('pauseWalk'); $('#bgm')[0].pause(); num++; return num;}else{ $(this).removeClass('pauseWalk'); $(this).addClass('rotate'); $('#bgm')[0].play(); num=1; return num;} })</script></body>
问题解答
回答1:iOS 上 animation-play-state 失效.
你可以把状态叠加. 如下示例:链接描述
相关文章:
1. javascript - vscode alt+shift+f 格式化js代码,通不过eslint的代码风格检查怎么办。。。2. javascript - 这不是对象字面量函数吗?为什么要new初始化?3. javascript - [js]为什么画布里不出现图片呢?在线等4. javascript - 如何将一个div始终固定在某个位置;无论屏幕和分辨率怎么变化;div位置始终不变5. javascript - 原生canvas中如何获取到触摸事件的canvas内坐标?6. javascript - 求解答:实例对象调用constructor,此时constructor内的this的指向?7. javascript - 有什么比较好的网页版shell前端组件?8. html - vue项目中用到了elementUI问题9. html5 - 有可以一次性把所有 css外部样式转为html标签内style=" "的方法吗?10. python - 如何判断爬虫已经成功登陆?
