[jQuery]animate(滑塊滑動)
html
<p><a href="#" class="run">Run</a></p>
<div id="box">
</div>
css
<style type="text/css">
body {}{
margin: 20px auto;
padding: 0;
width: 580px;
font: 80%/120% Arial, Helvetica, sans-serif;
}
a {}{
font-weight: bold;
color: #000000;
}
#box {}{
background: #6699FF;
height: 100px;
width: 100px;
position: relative;
}
</style>
jquery





















jquery
1
$(document).ready(function(){
2
$(".run").click(function(){
3
4
$("#box").animate({opacity: "0.1", left: "+=400"}, 1200)
5
.animate({opacity: "0.4", top: "+=160", height: "20", width: "20"}, "slow")
6
.animate({opacity: "1", left: "0", height: "100", width: "100"}, "slow")
7
.animate({top: "0"}, "fast")
8
.slideUp()
9
.slideDown("slow")
10
return false;
11
12
});
13
});

2

3

4

5

6

7

8

9

10

11

12

13
