[Notify Barライブラリ] メッセージのアニメーション速度を指定する

説明

Notify Barライブラリでメッセージのアニメーション速度は$.notifyBar()のオプションパラメータのanimationSpeedにミリ秒または"slow", "fast", "normal"の文字列で指定します。

サンプルプログラム

【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/jquery.clearableTextField.css" type="text/css" media="all">
<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/jquery.notifyBar.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>アナウンスメッセージを表示する</h1>
<button id="thankyou">寄付をする</button>
</body>
</html>

【sample.js】
$(function(){
$("#thankyou").click(
function(){
$.notifyBar({
html: "寄付をありがとうございます。",
animationSpeed : 2000
});
}
);
});
サンプルを実行
[戻る]