手机端ios下非safari浏览器和android浏览器拖拽阻止rotate属性
手机端ios下非safari浏览器和android浏览器页面内拖拽阻塞css3 的transform rotate。
代码如下: demo地址
<div class="place-div">
<img src="http://7fvgk8.com1.z0.glb.clouddn.com/%E9%9B%B7%E8%BE%BE@3x.png" alt=""class="fetch-ing-img" />
</div>
html, body {
height: 100%;
}
.place-div {
width: 100%;
height: 100%;
background: #f00;
padding-top: 100px;
text-align: center;
}
@-webkit-keyframes refresh {
0% {
-webkit-transform: rotate(0);
}
50% {
-webkit-transform: rotate(180deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
.fetch-ing-img {
width: 19px;
height: 19px;
-webkit-animation: refresh 0.5s linear infinite;
-o-animation: refresh 0.5s linear infinite;
-moz-animation: refresh 0.5s linear infinite;
animation: refresh 0.5s linear infinite;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论