您的位置:首页 > Web前端 > JQuery

jquery 页面载入特效

2014-07-04 15:49 162 查看
过度动画

<?php

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>

<script src="http://cdn.bootcss.com/jquery/2.0.3/jquery.js"></script>

<style type="text/css">
.loader{
width: 100%;
height: 100%;
top:0;
left: 0;
position: fixed;
background: #2c3e50;
z-index: 9999999;
-webkit-transition: all .25s ease-in-out;
-moz-transition: all .25s ease-in-out;
-ms-transition: all .25s ease-in-out;
-o-transition: all .25s ease-in-out;
transition: all .25s ease-in-out;
}
.spinner {
width: 100px;
height: 100px;
left: 50%;
top:50%;
margin-top: -50px;
margin-left: -50px;
position: fixed;
opacity: 1;
}
.double-bounce1, .double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #fff;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: bounce 2.0s infinite ease-in-out;
animation: bounce 2.0s infinite ease-in-out;
}
.double-bounce2 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}

</style>
<script type="text/javascript">
$(window).load(function(){
$(".loader").css("opacity",0);
setTimeout(function(){$(".loader").css("display","none");},600);
});

</script>
</head>
<body>

<div class="loader">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>

</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: