[jSnowライブラリ] 雪を降らせる

説明

jSnowライブラリで雪を降らせるにはページが読み込まれたら$().jSnow()とします。雪は●で表示されランダムに上から降るようになります。

サンプルプログラム

【HTML】
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jsnow.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>雪を降らせる</h1>
<p>雪を降らせるjQueryプラグインjSnowのサンプルです。</p>
</body>
</html>

【sample.js】
$(function(){
$().jSnow();
});
サンプルを実行
[戻る]