这篇文章给大家分享的是有关JavaScript和jQuery制作光棒效果的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
使用javaScript制作光棒效果
--首先是javaScript
<script>
$(function () {
var lis = document.getElementsByTagName("li"); //定义DOM变量接受标签为li的元素
for (var i = 0; i < lis.length;i++){
lis[i].onmouseover = function () {
//方式一
//this.style.backGround = "pink"; //1,注意这里只能使用this方法作为for循环当前遍历项
//this.style.fontSize = "50px"; //2,同样style之后的追加的样式命名只能用骆驼命名法
//方式二
this.style.cssText = "background-color:red;font-size:50px";
};
lis[i].onmouseout = function () {
//方式一
//this.style.background = "";
//this.style.fontSize = "20px";
//方式二
this.style.cssText = "background-color:;font-size:20px";
}
}
});
</script>
两种方式相比相对来说:.cssText比较简便
使用jQuery制作光棒效果
<script>
$(function () {
$("li").hover(function () { //这里调用复合事件 模拟鼠标悬停事件
$(this).css({"background-color": "red","font-size":"50px"});
},
function () {
$(this).css({ "background-color": "", "font-size": "20px" }); //直接追加CSS样式
}
);
});
</script>
相对于javaScript jQuer代码更灵活,简便一些,(jQuery中有自动遍历效果,所有省了循环)
感谢各位的阅读!关于“JavaScript和jQuery制作光棒效果的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!