publicTIM 2012-07-19
日期:2012-7-10 来源:GBin1.com
jQuery的UI相关插件很多,今天我们介绍来自Vanity Toolset的jQuery插件集,帮助你有效的简化前端UI开发。
这套jQuery UI插件包含了7个不同的UI组件,包括:
以上所有的插件都使用很简单的代码,体积非常小,你可以根据自己的需要来完善。文档完善并且拥有非常好的在线演示例子。相信大家使用会非常方便。支持所有的主流浏览器。
<div class="slider"> <!-- the elements inside the slider, have as many as you want --> <div><a href="#"><img src="images/1.jpg" width="1024" height="350" border="0" /></a></div> <div><a href="#"><img src="images/2.jpg" width="1024" height="350" border="0" /></a></div> <div><a href="#"><img src="images/3.jpg" width="1024" height="350" border="0" /></a></div> <div><a href="#"><img src="images/4.jpg" width="1024" height="350" border="0" /></a></div> <!-- the navigation can be placed ANYWHERE in your document --> <a href="#" class="next"> </a> <a href="#" class="prev"> </a> </div><!-- slider -->
$(document).ready(function(){ $(".slider").jSlider({elem:"div",images:true, animation: "random",auto_slide: true, auto_slide_interval:4000, infinite: true, speed: 1200}); });
代码非常简单并且直观,希望大家能够应用到自己的项目中去。