jquery实现下雪的动态效果
现在是大冬天,做专题放点雪花效果,说不定是好事。。。,具体的通过jquery实现代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>下雪动画</title>
<script type="text/javascript" src="http://www.czmebel.com/subject2/2zhounian/js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src='js/snowfall.jquery.js'></script>
<style type="text/css">
html,body{padding:0;margin:0;}
.darkBg{background:#2d0f0f;}
</style>
<script type='text/javascript'>
$(document).ready(function(){
//$(document).snowfall();
document.body.className = "darkBg";
$(document).snowfall('clear');
$(document).snowfall({round:true, minSize:3, maxSize:8}); // add rounded
});
</script>
</head>
<body>
</body>
</html>
效果图: