web 中重新播放css 动画

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="zh" xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta charset = "utf-8">
	<title>animation</title>
	<style type="text/css">
		body{
			width: 100%;			
		}
		.type{
			width: 80px;
			height: 80px;
			border-radius: 50px;
			/*background:-webkit-gradient(radial,25 25,0,25 25,25,from(white),to(black));
			background:-moz-gradient(radial,25 25,0,25 25,25,from(white),to(black));*/
			background: -webkit-radial-gradient(circle, #ead, white); 
		}   	
		@-webkit-keyframes bounceOut {
		  	20% {
			    -webkit-transform: scale3d(.9, .9, .9);
	 	 	}

		  	50%, 55% {
			    opacity: 1;
			    -webkit-transform: scale3d(1.1, 1.1, 1.1);
		  	}

		  	to {
			    opacity: 0;
			    -webkit-transform: scale3d(.3, .3, .3);
		  	}
		}		
		.bounceOut {
			/*display: none;*/
			margin: auto;
			width: 50px;
			height: 50px;
			border-radius: 25px;
			background-color: rgb(18,131,207);
		  	-webkit-animation-name: bounceOut;
		  	animation-name: bounceOut;
 		 	-webkit-animation-duration: .75s;
  			animation-duration: .75s;
		}
		.test{}
	</style>
</head>
<body>
	<script type="text/javascript" src="/ui/js/jquery-2.1.1.min.js"></script>
	<div class="type"></div>
	<div class="bounceOut" id="circle"></div>
	<div class="test" id="test"></div>
	<script type="text/javascript">
	$(this).click(function () {
		$('div').eq(1).removeClass("bounceOut");
		var temp = $('div').eq(1);
		var newTemp = temp.clone(true);
		temp.after(newTemp);
		temp.remove();
		newTemp.addClass("bounceOut"); 
	});
	</script>
</body>

</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值