⑴ 圖片輪播的代碼怎麼用啊
插入到你要設置圖片輪播的地方就可以啊
代碼如下:
<div class="box J_TBox" >
<div class="shop-slider">
<div class="bd">
<div class="slider-promo J_Slider J_TWidget" data-type="scroll" data-widget-type="Slide" style="height:400px;" data-widget-config="{'effect':'scrolly','contentCls': 'lst-main', 'navCls': 'lst-trigger', 'activeTriggerCls': 'current'}">
<ul class="lst-main">
<li><a href="連接地址1" ><img src="http://mb2.yu.com.cn/201011/30/F1221246343.jpg" alt="" /></a></li>
<li><a href="連接地址1" ><img src="http://mb2.yu.com.cn/201011/30/90221245122.jpg" alt="" /></a></li>
<li><a href="連接地址1" ><img src="http://mb2.yu.com.cn/201011/30/FD221246634.jpg" alt="" /></a></li>
</ul>
</div>
</div>
</div>
</div>
(四)代碼詳解
(1)其中<ul class="lst-main">與</ul>之間的代碼為用戶可以自定義修改的部分,為輪播的圖片地址和超級連接地址信息。
<li><a href="連接地址1" ><img src="http://mb2.yu.com.cn/201011/30/90221245122.jpg" alt="" /></a></li>
中的「http://mb2.yu.com.cn/201011/30/90221245122.jpg為圖片地址。href中商品的連接地址。
(2)第四行style="height:400px;" data-widget-config中的400px為圖片高度設置
⑵ 求 圖片輪播代碼
<style type="text/css">
#banner {position:relative; width:1070px; height:280px; overflow:hidden; margin:0 auto;}
#banner_list img {border:0px;}
#banner_bg {position:absolute; bottom:0;background-color:#000;height:30px;filter: Alpha(Opacity=30);opacity:0.3;z-index:1000;
cursor:pointer; width:478px; }
#banner_info{position:absolute; bottom:0; left:5px;height:22px;color:#fff;z-index:1001;cursor:pointer}
#banner_text {position:absolute;width:120px;z-index:1002; right:3px; bottom:3px;}
#banner ul {position:absolute;list-style-type:none;filter: Alpha(Opacity=80);opacity:0.8; border:1px solid #fff;z-index:1002;
margin:0; padding:0; bottom:3px; right:5px;}
#banner ul li { padding:0px 8px;float:left;display:block;color:#FFF;border:#e5eaff 1px solid;background:#6f4f67;cursor:pointer}
#banner ul li.on { background:#900}
#banner_list a{position:absolute;} <!-- 讓四張圖片都可以重疊在一起-->
</style>
<script src="../jquery.js" type="text/javascript"></script>
<script type="text/javascript">
var t = n = 0, count;
$(document).ready(function(){
count=$("#banner_list a").length;
$("#banner_list a:not(:first-child)").hide();
$("#banner_info").html($("#banner_list a:first-child").find("img").attr('alt'));
$("#banner_info").click(function(){window.open($("#banner_list a:first-child").attr('href'), "_blank")});
$("#banner li").click(function() {
var i = $(this).text() - 1;//獲取Li元素內的值,即1,2,3,4
n = i;
if (i >= count) return;
$("#banner_info").html($("#banner_list a").eq(i).find("img").attr('alt'));
$("#banner_info").unbind().click(function(){window.open($("#banner_list a").eq(i).attr('href'), "_blank")})
$("#banner_list a").filter(":visible").fadeOut(500).parent().children().eq(i).fadeIn(1000);
document.getElementById("banner").style.background="";
$(this).toggleClass("on");
$(this).siblings().removeAttr("class");
});
t = setInterval("showAuto()", 4000);
$("#banner").hover(function(){clearInterval(t)}, function(){t = setInterval("showAuto()", 4000);});
})
function showAuto()
{
n = n >=(count - 1) ? 0 : ++n;
$("#banner li").eq(n).trigger('click');
}
</script>
========================以上是CSS和腳本=======================
<div id="banner">
<div id="banner_bg"></div> <!--標題背景-->
<div id="banner_info"></div> <!--標題-->
<ul>
<li class="on">1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
<div id="banner_list">
<a href="#" target="_blank"><img src="../images/jsbg1.jpg" title="" alt="" /></a>
<a href="#" target="_blank"><img src="../images/jsbg2.jpg" title="" alt="" /></a>
<a href="#" target="_blank"><img src="../images/jsbg3.jpg" title="" alt="" /></a>
<a href="#" target="_blank"><img src="../images/jsbg4.jpg" title="" alt="" /></a>
</div>
</div>
圖片在哪裡放,你應該看的很清楚吧,
⑶ jquery怎麼實現手機觸屏圖片滑動代碼,手向左或向右滑動,圖片滑動。不滑動的時候圖片自動循環滾動
可以使用事件綁定機制。
如:
$('元素').bind({
'touchstartmousedown':function(){
$('#touch_tips').text('按下或觸摸');
},
'touchmovemousemove':function(){
$('#touch_tips').text('移動中');
},
'touchendtouchcancelmouseup':function(){
$('#touch_tips').text('松開');
}
})
具體請搜索【touch event】手機觸屏事件。注意,不支持windows phone!
⑷ 使用hammer手機端手指滑動實現圖片輪播,求代碼,謝謝
if(pipe(fd_pipe) == 0) //創建管道
{
pid = fork();
if(pid > 0)
{
pid_res = wait(&stat_value);
if(pid_res > 0)
{
count = read(fd_pipe[0],output,BUFSIZ); //從管道中讀取數據
printf("father process read %d characters,they are: %s \n",count,output);
}
}
else if(pid == 0)
{
count = write(fd_pipe[1],input,strlen(input)); //向管道中寫入數據
printf("son process write %d characters,they are : %s \n",count,input);
}
else
{
printf("create process failed \n");
return 1;
}
⑸ 上下圖片輪播的代碼這樣寫,那左右圖片輪播的代碼怎麼寫呢謝謝
上下圖片
⑹ 手機或觸摸屏點擊切換圖片,怎麼修改代碼,以實現滑動切換圖片。
也就是說現在你已經寫出點擊切換的代碼了,把這部分代碼修改下,放到滑動事件里,或者用swiper
⑺ 手機網站html圖片手動滾播代碼
你想多了,純html是做不到的,另外:大部分手機瀏覽器左右滑動都是後退前進歷史的,新網站不要與廣大手機用戶的使用習慣相抗衡,不然你會死的很慘。
⑻ 輪播圖片代碼修改
試試這個圖片輪播
有12345數字一起切換
有小圖大圖一起切換
裡面有教程和源碼
⑼ 請問淘寶的圖片輪播代碼是什麼
親 是下面這個 一、帶漸變效果的淘寶店鋪促銷輪播代碼: <DIV class="slider-promo J_Slider J_TWidget tb-slide" style="HEIGHT: 400px" data-widget-config="{'effect':'fade','contentCls': 'lst-main', 'navCls': 'lst-trigger', 'activeTriggerCls': 'current'}" data-widget-type="Slide"> <ul class="lst-main tb-slide-list" style="HEIGHT: 400px"> <li><A target=_blank href="#"><img alt="" src="圖片地址1"></A></li> <li><A target=_blank href="#"><img alt="" src="圖片地址2"></A></li> <li><A target=_blank href="#"><img alt="" src="圖片地址3"></A></li> <li><A target=_blank href="#"><img alt="" src="圖片地址4"></A></li></ul> <ul class=lst-trigger> 二、淘寶促銷輪播代碼之漸變效果代碼解釋: HEIGHT: 400px 設置你的輪播模塊高度,根據你的促銷圖片的尺寸來設置,此版本輪播是4張圖片,且4張圖片寬度、高度分別統一。本設置在代碼中有兩處。 <A target=_blank href="#"> 「#」代表你的促銷商品的鏈接網址,共有4處。 <img alt="" src="圖片地址1"> 「圖片地址1」設置你促銷圖片的網路地址,也有4處。 如果還不可以的話 我給你我寫的帖子看看
求採納
⑽ HTML圖片輪播代碼怎麼寫
html部分
<divid="container">
<divclass="sections">
<divclass="section"id="section0"><h3>thisisthepage1</h3></div>
<divclass="section"id="section1"><h3>thisisthepage2</h3></div>
<divclass="section"id="section2"><h3>thisisthepage3</h3></div>
<divclass="section"id="section3"><h3>thisisthepage4</h3></div>
</div>
</div>
css部分
*{
padding:0;
margin:0;
}
html,body{
height:100%;
}
#container{
width:100%;
height:500px;
overflow:hidden;
}
.sections,.section{
height:100%;
}
#container,.sections{
position:relative;
}
.section{
background-color:#000;
background-size:cover;
background-position:50%50%;
text-align:center;
color:white;
}
#section0{
background-image:url('images/1.jpg');
}
#section1{
background-image:url('images/2.jpg');
}
#section2{
background-image:url('images/3.jpg');
}
#section3{
background-image:url('images/4.jpg');
}
.pagesli{list-style-type:none;width:10px;height:10px;border-radius:10px;background-color:white}.pagesli:hover{box-shadow:005px2pxwhite}.pagesli.active{background-color:orange;box-shadow:005px2pxorange}.pages{position:absolute;z-index:999}.pages.horizontal{left:50%;transform:translateX(-50%);bottom:5px}.pages.horizontalli{display:inline-block;margin-right:10px}.pages.horizontalli:last-child{margin-right:0}.pages.vertical{right:5px;top:50%;transform:translateY(-50%)}.pages.verticalli{margin-bottom:10px}.pages.verticalli:last-child{margin-bottom:0}
JS部分
<scriptsrc="js/jquery-1.11.0.min.js"type="text/javascript"></script>
//引入pageSwitch.min.js
<script>
$("#container").PageSwitch({
direction:'horizontal',
easing:'ease-in',
ration:1000,
autoPlay:true,
loop:'false'
});
</script>