jQuery ---- アニメーション
jQueryにはアニメーションをとても簡単に実装出来る仕組みがあります。
↓の例では#boxのleftプロパティの値を、1,000ミリ秒(1秒)かけて500ピクセルにすると言う意味になります。
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test</title>
<style type="text/css">
#box {
position: relative;
left: 0px;
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<div id="box"></div>
<script type="text/javascript">
$(function() {
$('#box').animate({ left: '500px'}, 1000);
});
</script>
</html>
またフェードイン、フェードアウト、スライドダウン、スライドアップといったよく使うアニメーションは、それぞれfadeIn、fadeOut、slideDown、slideUpといったショートカットのメソッドが用意されている。
以下はfadeOutの例↓
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test</title>
<style type="text/css">
#box {
position: relative;
left: 0px;
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<div id="box"></div>
<script type="text/javascript">
$(function() {
$('#box').fadeOut();
});
</script>
</html>
下にフェードインやスライドダウンのアニメーションのイメージをのせます↓
Author And Source
この問題について(jQuery ---- アニメーション), 我々は、より多くの情報をここで見つけました https://qiita.com/tsukishimaao/items/1998f775bfb5224f6c6c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .