发布于 2016-10-28 08:16:12 | 194 次阅读 | 评论: 0 | 来源: 网友投递
这篇文章主要介绍了jQuery中:animated选择器用法,实例分析了:animated选择器的功能、定义及匹配动画效果元素的使用技巧,具有一定的参考借鉴价值,需要的朋友可以参考下本文实例讲述了jQuery中:animated选择器用法。分享给大家供大家参考。具体分析如下:
此选择器匹配所有正在执行动画效果的元素。
可以使用animate()方法创建自定义动画。
语法结构:
$(":animated")
$("li:animated").css("background-color","blue")
实例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.phperz.com/" />
<title>phperz</title>
<style type="text/css">
li{
list-style-type:none;
width:150px;
height:30px;
}
.run{background-color:green;}
.static{background-color:#603;}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
function runit(){
$(".run").animate({width:"250px"});
$(".run").animate({width:"150px"},runit);
}
$("button").click(function(){
runit();
$("li:animated").css("background-color","blue");
})
})
</script>
</head>
<body>
<ul>
<li class="run"></li>
<li class="static"></li>
</ul>
<button>点击开始动画</button>
</body>
</html>
以上可以将动画元素的背景颜色设置为蓝色。
希望本文所述对大家的jQuery程序设计有所帮助。