基本信息
源码名称:HTML5水波浪起伏模拟动画DEMO演示
源码大小:3.19KB
文件格式:.rar
开发语言:CSS
更新时间:2016-10-10
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
HTML5水波浪起伏模拟动画DEMO演示
<!DOCTYPE>
<html>
<head>
<title>HTML5水波浪起伏模拟动画DEMO演示</title>
<META charset="utf-8">
<style>
html{
overflow:hidden;
}
body{
margin:0px;
}
canvas{
margin-left:-40px;
}
span{
height:7px;
width:20px;
display:inline-block;
cursor:pointer;
position:absolute;
top:0px;
transition: height 0.2s;
-o-transition: height 0.2s;
-moz-transition: height 0.2s;
-webkit-transition: height 0.2s;
}
span:hover{
height:12px;
}
#blue{
background-color:#367aec;
left:30px;
}
#purple{
background-color:#f727d2;
left:50px;
}
#black{
background-color:#000000;
left:70px;
}
#container{
width:100%;
}
</style>
</head>
<body>
<div style="text-align:center;clear:both">
<script src="/gg_bd_ad_720x90.js" type="text/javascript"></script>
<script src="/follow.js" type="text/javascript"></script>
</div>
<iframe frameborder="0" scrolling="no" src="index2.html" width="100%" height="500px"></iframe>
</body>
</html>