Nex是一款效果炫酷的、高性能的跨浏览器全屏幻灯片特效jQuery插件。该幻灯片插件允许你嵌入图片、视频,甚至是谷歌地图。该幻灯片提供了7组共34种不同的效果,可以使你适用于任何场景下使用。它的特点有:
该幻灯片插件依赖于jQuery和Animo(一个javascript动画框架)。
使用该幻灯片插件直接引入需要的CSS文件及JS文件即可,不需要任何的HTML代码。
<link rel="stylesheet" href="css/nex.min.css" /> <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.0.min.js"></script> <script type="text/javascript" src="js/Animo.min.js"></script> <script type="text/javascript" src="js/nex.min.js"></script>
在引入必要的文件之后,可以按下面代码的格式来调用该幻灯片插件:
jQuery(function() { new Nex({ style : { type : "circle", /* circle, square */ filter : "none", // none, grayscale, sepia, hue-rotate, brightness, contrast, saturate pattern : "", // url to pattern background : "#9b58b5", // background color hover : "#8f44ad", // hover color of background color : "#000" // text color }, data : [ { display : "image", // image, map, video title : "Nex", // image title description : " — Blazing Fast Fullscreen Slider", // image description link : "images/1.jpg", // image src thumb : "images/thumb_1.jpg", // image thumb url : "#", // url where image will link alt : "Blazing Fast Fullscreen Slider" // image alt tag }, { display : "image", // image, map, video title : "Nex", // image title description : " — Speed Optimized", // image description link : "images/2.jpg", // image src thumb : "images/thumb_2.jpg", // image thumb url : "#", // url where image will link alt : "Speed Optimized" // image alt tag }, { display : "image", // image, map, video title : "Nex", // image title description : " — GPU Accelerated", // image description link : "images/3.jpg", // image src thumb : "images/thumb_3.jpg", // image thumb url : "#", // url where image will link alt : "GPU Accelerated" // image alt tag }, { display : "image", // image, map, video title : "Nex", // image title description : " — Full Customizable", // image description link : "images/4.jpg", // image src thumb : "images/thumb_4.jpg", // image thumb url : "#", // url where image will link alt : "Full Customizable" // image alt tag }, { display : "image", // image, map, video title : "Nex", // image title description : " — Unique Effects", // image description link : "images/5.jpg", // image src thumb : "images/thumb_5.jpg", // image thumb url : "#", // url where image will link alt : "Unique Effects" // image alt tag } ] }); });
在初始化Nex
对象时可以传入一个对象数组,该对象数组中有两个元素:style
和data
。style
用于指定幻灯片的外观,data
用于指定幻灯片的数据。
circle
,,square
。具体34种不同效果请看下载压缩包中的例子。