如何用css3实现360度旋转动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用css3实现360度旋转动画相关的知识,希望对你有一定的参考价值。
写了例子,效果不是很好,仅供参考
<!DOCTYPE html><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>IE浏览器CSS transform旋转属性的演示</title>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
<style type="text/css">
body font-family: "Arial", sans-serif;
#example
position: absolute;
top: 100px;
left: 100px;
border: #09f solid 1px;
font-weight: 900;
color: #09f;
display: block;
width: 200px;
height: 200px;
text-align:center;
line-height:200px;
cursor:pointer;
</style>
</head>
<body>
<div id="example">.</div>
<script type="text/javascript">
function rotate(percent, scale)
var radian = Math.PI * percent;
var angle = 180 * percent;
var scale = 0.8;
var style = document.getElementById("example").style;
var transform = "rotate("+ angle +"deg) scale("+ scale +")";
style.filter = "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand',M11="+Math.cos(radian)*scale+",M12="+(Math.sin(radian) * -1)*scale+",M21="+Math.sin(radian)*scale+",M22="+Math.cos(radian)*scale+");";
style.MozTransform = transform;
style.WebkitTransform = transform;
style.OTransform = transform;
style.Transform = transform;
i=0.25;
setInterval("rotate(i);i+=0.01", 10);
</script>
</body>
</html> 参考技术A transform:rotate(180deg) deg就是只2维的多少度
Android 旋转动画简单实现
文章目录
背景
产品优化,需要在启动页添加 loading 提示,通过一个图片 360 度旋转实现。如下图:
实现
步骤
- 获取 View 对象(这里示例使用 ImageView)
- 根据 anim resource 加载一个 动画对象
- 调用 View 对象的 startAnimation 方法开始动画
动画 set xml
rotate.xml 如下:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
android:duration="600"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:repeatMode="restart"
android:interpolator="@android:anim/linear_interpolator"
android:toDegrees="350" />
</set>
相关属性就不再介绍了,大家自行阅读这里,有详细的属性介绍。
代码
private void rotate()
// 根据 anim resource 加载一个 动画对象
Animation rotateAnim = AnimationUtils.loadAnimation(this, R.anim.rotate);
// 创建 dialog 并指定 style
Dialog dialog = new Dialog(this, R.style.dialog);
// LayoutInflater 构建 View
View loadingView = LayoutInflater.from(this).inflate(R.layout.splash_loading, null);
// 获取 View 对象(这里是 ImageView)
ImageView view = loadingView.findViewById(R.id.iv_loading);
// 开始动画
view.startAnimation(rotateAnim);
// 返回不可取消 dialog
dialog.setCancelable(false);
// 设置显示内容 view
dialog.setContentView(loadingView);
// 显示 dialog
dialog.show();
关键代码其实就三句,不过我是用的 dialog ,所以会多一些跟 dialog 相关的代码
至于为啥我这里用 dialog ,是因为我的启动页是没有 setContentView 的,所以使用的是 dialog
演示
技术永不眠!我们下期见!
以上是关于如何用css3实现360度旋转动画的主要内容,如果未能解决你的问题,请参考以下文章