我是靠谱客的博主 感性凉面,最近开发中收集的这篇文章主要介绍jquery轮播图插件使用方法详解,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本文实例为大家分享了jquery轮播图插件使用案例,供大家参考,具体内容如下

代码

<!DOCTYPE html>
<html>
 <head>
 <meta charset="UTF-8">
 <title></title>
 <link rel="stylesheet" type="text/css" href="style.css" />
 <script type="text/javascript" src="jQuery.js"></script>
 <script type="text/javascript" src="carousel.js"></script>
 <script type="text/javascript">
 $(function(){
 $(".carousel-content").carousel({
 carousel : ".carousel",//轮播图容器
 indexContainer : ".img-index",//下标容器
 prev : ".carousel-prev",//左按钮
 next : ".carousel-next",//右按钮
 timing : 2000,//自动播放间隔
 animateTime : 700,//动画时间
 autoPlay : true,//是否自动播放 true/false
 direction : "left",//滚动方向 right/left
 });
 
 $(".carousel-content").hover(function(){
 $(".carousel-prev,.carousel-next").fadeIn(300);
 },function(){
 $(".carousel-prev,.carousel-next").fadeOut(300);
 });
 
 $(".carousel-prev").hover(function(){
 $(this).find("img").attr("src","img/left2.png");
 },function(){
 $(this).find("img").attr("src","img/left1.png");
 });
 $(".carousel-next").hover(function(){
 $(this).find("img").attr("src","img/right2.png");
 },function(){
 $(this).find("img").attr("src","img/right1.png");
 });
 });
 </script>
 </head>
 <body>
 <div class="content">
 <div class="a-content">
 <div class="carousel-content">
 <ul class="carousel">
 <li><img src="img/1.jpg"></li>
 <li><img src="img/2.jpg"></li>
 <li><img src="img/3.jpg"></li>
 <li><img src="img/4.jpg"></li>
 <li><img src="img/5.jpg"></li>
 </ul>
 <ul class="img-index"></ul>
 <div class="carousel-prev"><img src="img/left1.png"></div>
 <div class="carousel-next"><img src="img/right1.png"></div>
 </div>
 </div>
 </div>
 </body>
</html>

精彩专题分享:jQuery图片轮播 JavaScript图片轮播 Bootstrap图片轮播

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。

最后

以上就是感性凉面为你收集整理的jquery轮播图插件使用方法详解的全部内容,希望文章能够帮你解决jquery轮播图插件使用方法详解所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(147)

评论列表共有 0 条评论

立即
投稿
返回
顶部