最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

关于JQuery和html+css实现带小圆点和左右按钮的轮播图分享

来源:动视网 责编:小OO 时间:2020-11-27 20:08:07
文档

关于JQuery和html+css实现带小圆点和左右按钮的轮播图分享

是的。你没看错。还是轮播图。这次的JQuery的哟。CSS代码。,.d2{ width:50px;height:60px;background-color: rgba(10,10,10,0.5);text-align: center;font-size:26px;font-weight: 800px;line-height:60px;cursor: pointer;} .d1{ position:absolute;top:373px;left:25px;} .d2{ position:absolute;top:373px;left:1445px;}。HTML代码。
推荐度:
导读是的。你没看错。还是轮播图。这次的JQuery的哟。CSS代码。,.d2{ width:50px;height:60px;background-color: rgba(10,10,10,0.5);text-align: center;font-size:26px;font-weight: 800px;line-height:60px;cursor: pointer;} .d1{ position:absolute;top:373px;left:25px;} .d2{ position:absolute;top:373px;left:1445px;}。HTML代码。


本文主要为大家带来一篇JQuery和html+css实现带小圆点和左右按钮的轮播图实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧,希望能帮助到大家。

是的!你没看错!还是轮播图。这次的JQuery的哟!!

CSS代码:

/*轮播图 左右按钮 小白点*/
 #second_p{
 margin-top: 160px;
 }
 .img_box{
 overflow: hidden;
 width:100%;
 height:420px;
 border:1px solid;
 position:relative;
 } 
 .img_box img{
 width:100%;
 position:absolute;
 } 
 .ul5{
 list-style: none;
 position:absolute;
 left:580px;
 top:565px;
 } 
 .ul5 li{
 float:left;
 margin-left:20px;
 width:40px;
 height:5px;
 border:0px;
 background:lawngreen;
 }
 .d1,.d2{
 width:50px;
 height:60px;
 background-color: rgba(10,10,10,0.5);
 text-align: center;
 font-size:26px;
 font-weight: 800px;
 line-height:60px;
 cursor: pointer;
 }
 .d1{
 position:absolute;
 top:373px;
 left:25px;
 }
 .d2{
 position:absolute;
 top:373px;
 left:1445px;
 }

HTML代码:

<!-- 轮播图 -->
<p id="second_p">
<p class="img_box">
 <img src="img/ban1.jpg">
 <img src="img/ban2.jpg">
 <img src="img/ban3.jpg">
 <img src="img/ban4.png">
</p> 
 <ul class="ul5">
 <li></li>
 <li></li>
 <li></li>
 <li></li>
</ul>
 <p class="d1"><</p>
 <p class="d2">></p>
</p>

js代码:

<script type="text/javascript">
 $(document).ready(function(){
//搜索按钮
 $("#ss").click(function(){
 var new_li = $("<li>"+ $("#skuang").val() +"</li>");
 $("#d1 ul").append(new_li);
 $("#d1").hide();
 $("#skuang").val("");

 })

 $("#skuang").focus(function(){
 $("#d1").css("display","block");
 });
 
 $("#skuang").blur();
 $("#qingch").click(function(){
 $("#d1 li:gt(0)").remove();
 $("#d1").hide();
 
 });

//轮播图
 var img=$(".img_box img");
 var li=$(".ul5 li");
 var pW=$(".img_box").width();
 var len=$(".img_box img").length;
 img.css("left",pW);
 img.eq(0).css("left",0);
 li.eq(0).css("background","red");
 var index=0;
 var next=0;
 function show(){
 next++;
 if(next==len){
 next=0;
 }
 img.eq(next).css("left",pW);
 img.eq(index).animate({"left":-pW});
 img.eq(next).animate({"left":0});
 li.eq(next).css("background","red");
 li.eq(index).css("background","lawngreen");
 index=next;
 }
 t=setInterval(show,2000);
 function show1(){
 next--;
 if(next==-1){
 next=len-1;
 }
 img.eq(next).css("left",-pW);
 img.eq(index).animate({"left":pW});
 img.eq(next).animate({"left":0});
 li.eq(next).css("background","red");
 li.eq(index).css("background","lawngreen");
 index=next; 
 }
 img.hover(function(){
 clearInterval(t); 
 },function(){
 t=setInterval(show,2000);
 })
 //左右按钮
 $(".d2").mousedown(function(){
 clearInterval(t);
 show();
 })
 $(".d2").mousedown(function(){
 t=setInterval(show,2000);
 }) 
 $(".d1").mousedown(function(){
 clearInterval(t);
 show1();
 })
 $(".d1").mousedown(function(){
 t=setInterval(show,2000);
 })
 //小白点 点击
 li.mousedown(function(){
 num=$(this).index();
 if(num==next){
 return;
 }else if(num<next){
 clearInterval(t);
 img.eq(num).css("left",-pW);
 img.eq(index).animate({"left":pW});
 img.eq(num).animate({"left":0});
 li.eq(num).css("background","red");
 li.eq(index).css("background","lawngreen");
 index=num;
 next=num;
 }else if(num>next){
 clearInterval(t);
 img.eq(num).css("left",pW);
 img.eq(index).animate({"left":-pW});
 img.eq(num).animate({"left":0});
 li.eq(num).css("background","red");
 li.eq(index).css("background","lawngreen");
 index=num;
 next=num;
 }
 })
 li.mouseup(function(){
 t=setInterval(show,2000);
 })
 })
 </script>

文档

关于JQuery和html+css实现带小圆点和左右按钮的轮播图分享

是的。你没看错。还是轮播图。这次的JQuery的哟。CSS代码。,.d2{ width:50px;height:60px;background-color: rgba(10,10,10,0.5);text-align: center;font-size:26px;font-weight: 800px;line-height:60px;cursor: pointer;} .d1{ position:absolute;top:373px;left:25px;} .d2{ position:absolute;top:373px;left:1445px;}。HTML代码。
推荐度:
标签: css 轮播图 jquery的
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top