zoukankan      html  css  js  c++  java
  • 旋转的播放按钮

    <!DOCTYPE html>
    <html lang="en">
    <head>
    	<meta charset="UTF-8">
    	<title>Document</title>
    	<style>
    		.video_btn_container{
    			height: 100px;
    			 100px;
    			position: relative;
    			border-radius: 50%;
    			background-color: rgb(255, 255, 255,.8);
    		}
    		.btn_border{
    			height: 100px;
    			 100px;
    			background: url('http://note.youdao.com/yws/public/resource/a5dec28b4c472b42d7126f3a389e3f28/xmlnote/531FC34716824BE5A6ABD0451F9FDBF0/WEBRESOURCEdd5881c009e6d8d9b5c7d166f93d5f53/7216') no-repeat;
    			background-size: 100% 100%;
    			
    			transition: my_border 2s linear infinite;
    			-webkit-animation:my_border 2s linear infinite;
    		}
    		.btn_core{
    			height: 30px;
    			 30px;
    			background: url('http://note.youdao.com/yws/public/resource/a5dec28b4c472b42d7126f3a389e3f28/xmlnote/531FC34716824BE5A6ABD0451F9FDBF0/WEBRESOURCEcf4dc195da4c948fecffeee63708e2eb/7218') no-repeat;
    			background-size: 100% 100%;
    			background-position: center center;
    			position: absolute;
    			top: 0;left: 0;right: 0;bottom: 0;
    			margin: auto;
    			transition: my_core 2s linear infinite;
    			-webkit-animation:my_core 2s linear infinite;
    		}
    		@keyframes my_border{
    			0%{transform: rotate(0deg);}
    			25%{transform: rotate(90deg);}
    			50%{transform: rotate(180deg);}
    			75%{transform: rotate(270deg);}
    			100%{transform: rotate(360deg);}
    		}
    		@-webkit-keyframes my_border{
    			0%{transform: rotate(0deg);}
    			25%{transform: rotate(90deg);}
    			50%{transform: rotate(180deg);}
    			75%{transform: rotate(270deg);}
    			100%{transform: rotate(360deg);}
    		}
    		@keyframes my_core{
    			0%{transform: scale(.9,.9);}
    			25%{transform: scale(1,1);}
    			50%{transform: scale(1.1,1.1);}
    			75%{transform: scale(1,1);}
    			100%{transform: scale(0.9,.9);}
    		}
    		@-webkit-keyframes my_core{
    			0%{transform: scale(.9,.9);}
    			25%{transform: scale(1,1);}
    			50%{transform: scale(1.1,1.1);}
    			75%{transform: scale(1,1);}
    			100%{transform: scale(0.9,.9);}
    		}
    	</style>
    </head>
    <body>
    	<div class="video_btn_container">
    		<div class="btn_border"></div>
    		<div class="btn_core"></div>
    	</div>
    </body>
    </html>
    
  • 相关阅读:
    WINDOWS 修改ROUTE命令
    SQL Server 索引 之 书签查找 <第十一篇>
    SQL Server索引的维护
    SQL Server索引语法 <第四篇>
    SQL Server索引 (原理、存储)聚集索引、非聚集索引、堆 <第一篇>
    SQL Server
    开发反模式
    开发反模式(GUID)
    开发反模式
    SQLServer 窗口函数
  • 原文地址:https://www.cnblogs.com/tonghaolang/p/7750980.html
Copyright © 2011-2022 走看看