欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

基于JS如何實現(xiàn)仿百度百家主頁的輪播圖效果

這篇文章將為大家詳細講解有關(guān)基于JS如何實現(xiàn)仿百度百家主頁的輪播圖效果,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)主營資興網(wǎng)站建設的網(wǎng)絡公司,主營網(wǎng)站建設方案,重慶APP開發(fā)公司,資興h5重慶小程序開發(fā)搭建,資興網(wǎng)站營銷推廣歡迎資興等地區(qū)企業(yè)咨詢

HTML                 

 <div class="ShowEntry"> 
     <!-- <div id="widget_content_player" class="Player" alog-group="log-player">-->
       <!--------- 右擊箭頭--------->
       <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" id="widget_content_player_prev" class="prev carousel-btn-prev">
        <span class="icon-wrap"><img src="image/箭頭左.png"></span>
       </a>
       <div id="widget_content_player_wrapper" class="player">
        <!---------- 一張大圖和涂上的文字 ------->
        <div id="widget_content_player_imgView" class="imgview">
          <!---------- 一張大圖 ------->
          <a href="" target=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" _blank" mon="a=12&amp;col=1&amp;pn=2">
          <img src="/upload/otherpic44/76605.gif" hadcut="1" class="active" >
          </a>
          <a href="" target=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" _blank" mon="a=12&amp;col=1&amp;pn=2">
          <img src="image/95eef01f3a292df570506750b5315c6035a873e0.jpg" >   
         </a>
          <a href="" target=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" _blank" mon="a=12&amp;col=1&amp;pn=2">
          <img src="image/0824ab18972bd407e8f01db872899e510fb30944.jpg.png" >   
          </a>
          <a href="" target=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" _blank" mon="a=12&amp;col=1&amp;pn=2">
          <img src="image/9825bc315c6034a8cfd58fc7c213495409237644.jpg" >   
          </a>
          <!--<div class="readnum"><span class="tit">閱讀數(shù)</span><span class="num" data-read="16913">16913</span></div>-->               
          <!---------- 圖片下方的解釋文字,由js控制 哪張圖對應哪個鏈接 ------->
          <div class="box">
           <i class="mark"></i>
           <a href="http://mbcaijing.baijia.baidu.com/article/755645" target="_blank" class="title">李嘉誠400億澳洲并購:千億現(xiàn)金急尋出路</a>
           <a href="http://mbcaijing.baijia.baidu.com/article/755645" target="_blank" class="title" >美女</a>
           <a href="http://mbcaijing.baijia.baidu.com/article/755645" target="_blank" class="title" >自行車</a>
           <a href="http://mbcaijing.baijia.baidu.com/article/755645" target="_blank" class="title" >足球</a>
          </div>
        </div>
        <!---------- 右下方四個點 ------->
        <div class="circles">
        <a href="http://guoshiliangbo.baijia.baidu.com/article/756806" class="circle" target="_blank" ></a>
        <a href="http://yemacaijing.baijia.baidu.com/article/755797" class="circle" target="_blank"></a>
        <a href="http://mbcaijing.baijia.baidu.com/article/755645" class="circle " target="_blank"></a>
        <a href="http://junstapo.baijia.baidu.com/article/755717" class="circle " target="_blank" ></a>
        </div>
       </div>
       <!--------- 右擊箭頭--------->
       <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" id="widget_content_player_next" class="next carousel-btn-next">
        <span class="icon-wrap"><img src="image/右箭頭.png"</span>
       </a>
      <!-- </div>-->
     </div>

CSS

.ShowEntry{
 height:inherit;
 width:70%;
 background:#00F;
 margin-right:10px;
 float:left;
 position:relative;
}
.ShowEntry .carousel-btn-prev, .ShowEntry .carousel-btn-next {
 position: absolute;
 top: 130px;
 width: 50px;
 height: 50px;
 z-index: 89; 
}
.addBgi{
 background-image:url(../image/%E5%9C%86.png);
 background-repeat: no-repeat;
}
.ShowEntry .carousel-btn-prev {
 left: 15px;
 background-position: -10px -95px\9;
 /*background-image:url(../image/%E5%B7%A6%E7%AE%AD%E5%A4%B4.png)*/
}
.ShowEntry .carousel-btn-next {
 right: 15px;
 background-position: -160px -95px\9;
}
.ShowEntry .icon-wrap {
 position: relative;
 display: block;
 margin: 10% 0 0 10%;
 width: 80%;
 height: 80%;
/* z-index:99;*/
}
.player {
 position: relative;
}
.player .imgview {
 /*width: 670px;*/
 height: 300px;
 position: relative;
 overflow: hidden;
 background: #ccc;
}
.circles{
 position: absolute;
 bottom: 20px;
 right: 0;
 width: 80px;
 height: 8px;
}
/*.player .circles .active*/
.active {
 background: red;
 opacity: 1;/*????????*/
}
.player .circles .circle {
 width: 8px;
 height: 8px;
 border-radius: 50%;
 display: inline-block;
 background:#000;
 margin-left: 2px;
 opacity: .7;
}
.box{
 height:80px;
 width:100%;
 position:absolute;
 bottom:0;
}
.box .title {
 font-size: 18px;
 line-height: 70px;
 color: #fff;
 font-family: "??????","Hiragino Sans GB";
 display: block;
 text-align:center;
}
.box .title:hover {
 text-decoration: none;
 color: #e05a5a;
}

javascript

var index=0;
//周期:2秒 auto_play后不能加括號
var circulate=setInterval(auto_play,2000);//函數(shù)后面不能加括號
//自動播放
function auto_play(){
 //alert(index);
 if(index>=3)
 {index=0;}
 else {index=index+1;}
 changePic(index);
 /*$(".imgview img").css("display","none");*/
 //$(".imgview img").attr("src",imgs[index]);
 //alert(index);
}
//切換圖片
 function changePic(index){
  //alert(index);
  $(".imgview a").css("display","none");
  $(".box a").css("display","none");
  $(".circles a").css("background","#000");
  //var src=$(".imgview a:eq("+index+")").attr("target");
  //alert(src);
  $(".imgview a:eq("+index+")").css("display","inline");
  $(".box a:eq("+index+")").css("display","block");
  $(".circles a:eq("+index+")").css("background","red");
  //alert(src);
 }
//鼠標進入播放區(qū)域 暫停播放
 $(".imgview").mouseenter(function(){
  //alert("hi!");
  clearInterval(circulate);
 })
 //鼠標移出播放區(qū)域 開始播放
 $(".imgview").mouseleave(function(){
  //alert("hi!");
  circulate=setInterval(auto_play,2000);
 })
 //鼠標移入序號圓點 切換到序號所對應圖
 $(".circle").mouseenter(function(){
  //如何確定當前circle的序號?
  var num=$(this).index();
  //alert(num);
  clearInterval(circulate);
  changePic(num);
  circulate=setInterval(auto_play,2000);
 });
//點擊左邊箭頭 切換到上一張
 $(".carousel-btn-prev").click(function(){
  clearInterval(circulate);
  //alert(index);
  //1.現(xiàn)在處在第幾張 :index;
  if(index==0)index=3;
  else index=index-1;
  changePic(index);
  circulate=setInterval(auto_play,2000);
 });
 //點擊右邊箭頭 切換到下一張
 $(".carousel-btn-next").click(function(){
  clearInterval(circulate);
  //alert(index);
  //1.現(xiàn)在處在第幾張 :index;
  if(index==3)index=0;
  else index=index+1;
  changePic(index);
  circulate=setInterval(auto_play,2000);
 });

關(guān)于“基于JS如何實現(xiàn)仿百度百家主頁的輪播圖效果”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

網(wǎng)頁題目:基于JS如何實現(xiàn)仿百度百家主頁的輪播圖效果
網(wǎng)站地址:http://aaarwkj.com/article24/igseje.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供移動網(wǎng)站建設、網(wǎng)站導航、品牌網(wǎng)站制作、用戶體驗外貿(mào)網(wǎng)站建設、定制開發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站建設
九九六热这里只有精品| 91久久国产免费网站| 一区二区三区午夜激情| 亚洲中文字幕永久免费| 精品国产第一区二区三区| 亚洲精品亚洲一区亚洲二区| 亚洲s码在线一区二区| 日韩精品免费一区二区三区| 日本中文有码视频在线观看| 偷拍一区二区三区夫妻| 丰满人妻少妇精品一区二区三区| 免费国产黄片在线播放| 精品国产一区二区三区性色av| 极品少妇高潮在线观看免费 | 深夜成人免费观看视频| 人妻一少妇一区二区三区 | 丰满的少妇一区二区三区免费观看 | 熟女乱熟乱熟妇综合网二区| 东京热男人的av天堂| 线上免费看黄色亚洲片| 麻豆成人三级电影在线| av电影在线中文字幕| 欧美 国产 综合 日韩| 一区二区三区乱码国产在线| 五月开心婷婷中文字幕| 青青草原影院在线观看| 青青草原在线视频一区| 婷婷久久五月综合激情| 激情网站免费在线观看| av影片在线观看不卡| 好色人妻在线播放中文字幕| 成人精品播放视频在线观看| 三级久久三级久久三级| 国产女同互慰一区二区| 青青草国产精品一区二区| 青青草手机在线视频免费观看| 成人黄色大片免费看| 亚洲一区二区三区小蜜桃| 日韩精品在线观看大全套| 亚洲中文字幕视频在看| 日韩夫妻性生活免费视频|