欢迎来到福编程网,本站提供各种互联网专业知识!

几行代码轻松搞定jquery实现flash8类似的连接效果

发布时间:2007-05-03 作者: 来源:转载
很简单几行代码就可以实现整个页面的连接效果.复制代码代码如下:$(document).ready(function(){$("#list1").css("list-style","none");$("#list1").css("margin","0px");$("#list1").children().css("background-image","url(l_04.gif)");$
很简单几行代码就可以实现整个页面的连接效果.
复制代码 代码如下:






$(document).ready(function(){
$("#list1").css("list-style","none");
$("#list1").css("margin","0px");
$("#list1").children().css("background-image","url(l_04.gif)");
$("#list1").children().css("height","30px");
$("#list1").children().children().css("margin-left","0px");
$("#list1").children().children().css("padding-left","12px");
$("#list1").children().children().css("background-image","url(allow_01.gif)");
$("#list1").children().children().css("background-repeat","no-repeat");
$("#list1").children().children().css("background-position","leftcenter");
$("#list1").children().children().mouseover(function(){
$(this).css("background-image","url(allow_02.gif)");
$(this).css("margin-left","6px");
});
$("#list1").children().children().mouseout(function(){
$(this).css("background-image","url(allow_01.gif)");
$(this).css("margin-left","0px");
});
}
);

无标题文档




  • 例表第一项

  • 例表第一项

  • 例表第一项

  • 例表第一项

  • 例表第一项

  • 例表第一项

  • 例表第一项

  • 例表第一项

  • 例表第一项





  • 相关推荐