您好,欢迎访问一九零五行业门户网

基于JSON格式数据的简单jQuery幻灯片插件(jquery-slider)的介绍

这篇文章主要介绍了关于基于json格式数据的简单jquery幻灯片插件(jquery-slider)的介绍,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
jquery-slider幻灯片插件通过json数据来提供图片地址和描述信息,同时也可以更换json数据来动态切换不同的图片,对json数据jquery幻灯片插件相关知识感兴趣的朋友一起学习吧
jquery-slider是一款基于json格式数据的jquery幻灯片插件。该幻灯片通过json数据来提供图片地址和描述信息等,你可以通过更换json数据来动态切换不同的图片。
使用方法
在页面中引入jquery和slider.js文件和font-awesome字体图标文件。
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css'><script type="text/javascript" src="js/jquery.min.js"></script><script type="text/javascript" src="js/slider.js"></script>
html结构
使用一个<p>作为幻灯片的容器,里面放置作为前后导航按钮的<button>元素。
<p class="slider" id="slider"><button type="button" class="button button-prev"><i class="fa fa-chevron-left" aria-hidden="true"></i></button><button type="button" class="button button-next"><i class="fa fa-chevron-right" aria-hidden="true"></i></button></p>
css样式
为幻灯片设置下面的css样式。
.slider {width: 100%;overflow: hidden;height: 500px;position: relative;}.sliderlist {position: absolute;top: 0;width: 300%;height: 100%;list-style: none;}.sliderlist li {position: absolute;top: 0;bottom: 0;overflow: hidden;width: 33.333333%;height: 100%;padding: 0;margin: 0;}.sliderlist li img {width: 100%;min-height: 100%;border: none;}.bulletlist {position: absolute;bottom: 15px;width: 100%;margin: 0 auto;list-style: none;}.bulletlist li {display: inline-block;width: 12px;height: 12px;margin: 0 5px;-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;border-radius: 50%;background-color: #fff;cursor: pointer;}.bulletlist .bulletactive { background-color: #0b0d18; }.content {position: absolute;top: 0;left: 0;right: 0;background-color: rgba(0, 0, 0, 0.3);font-size: 48px;color: #fff;}.button {position: absolute;bottom: 15px;z-index: 2;display: block;width: 40px;height: 40px;box-sizing: border-box;margin: 0;padding: 0;border: none;-webkit-border-radius: 5px;-moz-border-radius: 5px;-ms-border-radius: 5px;border-radius: 5px;background-color: rgba(5, 0, 36, 0.6);color: #fff;}.button-prev { left: 15px; }.button-next { right: 15px; }
json数据
该幻灯片的图片和图片描述信息有json数据来提供,格式如下:
sliderjson = [{"imagepath": "1.jpg","order": "2","url": "#","slidetext": "图片描述"},{"imagepath": "2.jpg","order": "3","url": "#","slidetext": "图片描述"}, {"imagepath": "3.jpg","order": "1","url": "#","slidetext": "图片描述"},{"imagepath": "4.jpg","order": "4","url": "#","slidetext": "图片描述"}
jquery-slider幻灯片插件的github地址为:https://github.com/eryasov/jquery-slider
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注!
相关推荐:
jquery mobile类库使用时加载导航历史的方法
关于jquery ajaxfileuplod 上传文件 essyui laoding的效果
以上就是基于json格式数据的简单jquery幻灯片插件(jquery-slider)的介绍的详细内容。
其它类似信息

推荐信息