css3的animate动画属性小记,animate未执行动画时隐藏元素(animation-fill-mode和opacity同时使用参考3)

本文介绍了如何利用CSS3的animation属性结合animation-fill-mode和opacity来实现动画开始前隐藏元素,执行时显示的效果。同时,讲解了animation-iteration-count用于设置动画播放次数,animation-play-state控制动画的运行或暂停状态,以及animation-timing-function用于自定义动画速度曲线。通过这些技巧,可以在网页交互中实现更流畅的动画效果。
摘要由CSDN通过智能技术生成

注:例子和截图均参考菜鸟教程,地址:http://www.runoob.com/cssref/css3-pr-animation.html

1.html

<html>
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no,minimum-scale=1.0,maximum-scale=1.0">
		<title>菜鸟教程(runoob.com)</title>
		<style>
			div {
				width: 100px;
				height: 100px;
				background: red;
				position: relative;
				/*需做兼容处理*/
				animation: mymove 5s infinite;
				-webkit-animation: mymove 5s infinite;
				-moz-animation: mymove 5s infinite;
				
			}	
			/*@keyframes定义动画名称*/		
			@keyframes mymove {
				from {
					left: 0px;
				}
				to {
					left: 200px;
				}
			}			
			@-webkit-keyframes mymove{
				from {
					left: 0px;
				}
				to {
					left: 200px;
				}
			}
			@-moz-keyframes mymove{
				from {
					left: 0px;
				}
				to {
					left: 200px;
				}
			}
		</style>
	</head>
	<body>
		<p><strong>注意: </strong> Internet Explorer 9 及更早IE版本不支持 animation 属性。</p>
		<div></div>
	</body>
</html>

2.语法(支持简写)

animation: name duration timing-function delay iteration-count direction fill-mode play-state;
说明
animation-name
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值