>  기사  >  웹 프론트엔드  >  css 动画圆环_html/css_WEB-ITnose

css 动画圆环_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-21 08:52:591431검색

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>    <title>cycle</title>	    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="this is my page">    <meta http-equiv="content-type" content="text/html; charset=UTF-8">    	<style>		#cycle{			position: relative;			width:200px;			height:200px;			margin:auto;		}		.pie1-wrapper{			position: absolute;			width:200px;			height:200px;			clip:rect(0px 200px 200px 100px);					}		@-webkit-keyframes pie1-rotate /* Safari 和 Chrome */		{			from {				transform:rotate(0deg);				-webkit-transform: rotate(0deg);			}			to {				transform:rotate(180deg);				-webkit-transform: rotate(180deg);			}		}		.pie1{			position: absolute;			width:200px;			height:200px;			background-color:pink;			border-radius: 100px;			clip:rect(0px 100px 200px 0px);			-webkit-animation: pie1-rotate 2s;	/* Safari 和 Chrome */			-webkit-animation-fill-mode: forwards;			-webkit-animation-timing-function:linear; /* Safari 和 Chrome */		}		.pie2-wrapper{			position: absolute;			width:200px;			height:200px;			clip:rect(0px 100px 200px 0px);					}		@-webkit-keyframes pie2-rotate /* Safari 和 Chrome */		{			from {				transform:rotate(0deg);				-webkit-transform: rotate(0deg);			}			to {				transform:rotate(180deg);				-webkit-transform: rotate(180deg);			}		}		.pie2{			position: absolute;			width:200px;			height:200px;			background-color:pink;			border-radius: 100px;			clip:rect(0px 200px 200px 100px);			-webkit-animation: pie2-rotate 2s;				-webkit-animation-fill-mode: forwards;			-webkit-animation-delay:2s; 			-webkit-animation-timing-function:linear; /* Safari 和 Chrome */		}		.pie-grey{			width:200px;			height:200px;			background-color:#eaeaea;			border-radius: 100px;		}		.pie-white{			position: absolute;			top:0;			bottom:0;			left:0;			right:0;			width:180px;			height:180px;			background-color:#fff;			border-radius: 90px;			margin:auto;		}	</style>  </head>    <body>      	<div id="cycle">  		<div class="pie1-wrapper">  			<div class="pie1"></div>		</div>		<div class="pie2-wrapper">  			<div class="pie2"></div>		</div>  		<div class="pie-grey"></div>  		<div class="pie-white"></div>  	</div>  </body></html>


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.