1
我對j查詢非常陌生。這可能相當尷尬,但我很難找到如何使用完整背景圖像創建滑塊圖像旋轉木馬。我已經看過其他的解決方案,但是它看起來像你必須有一個固定寬度的所有圖片的大小,你想要滑動(例如9000像素的div寬度)。不過,我覺得我可以使用某種類型的數組或索引函數,我可以用循環來迭代某些東西來隱藏和顯示。從基本的JavaScript過渡到jQuery是我無法調整的問題。如果任何人都可以給我一些建議或提示,那會很棒。以下是我的代碼如下。由於如何使用傳送帶隱藏並顯示背景圖像?
http://codepen.io/kevk87/pen/PPNPmg
<main>
<div class="container">
<ul>
<li class="one">
</li>
<li class="two"> </li>
<li class="three"></li>
<li class="four"></li>
</ul>
<div class="nav">
<ul >
<li class="first active"> </li>
<li class="second"> </li>
<li class="third"> </li>
<li class="fourth"> </li>
</ul>
</div>
</div>
</ul>
</main>
CSS
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
ul {
list-style:none;
height:100%;
}
main, html, body{
height:100%;
}
.container {
height:100%;
postion:relative;
}
.one {
height:100%; background:url(http://hamderser.dk/blog/images/clairvoyant/clairvoyant-nature-nature2.jpg) center center no-repeat fixed;
background-size:cover;
}
.two {
background: url(http://www.atilaminates.com/wp-content/uploads/2015/05/nature-wlk.jpeg) center center no-repeat fixed;
height:100%;
}
.three {
background: url(http://php.drishinfo.com/photostudioone/wp-content/uploads/2014/11/nature-wallpaper-hd-1920x1080.jpg) center center no-repeat fixed;
height:100%;
}
.four {
background: url(http://www.projecthappyhearts.com/wp-content/uploads/2015/04/green-nature-dual-monitor-other.jpg) center center no-repeat fixed;
height:100%;
}
.nav ul li {
width:20px;
background-color:white;
height:20px;
display:inline-block;
margin-right:20px;
}
.nav ul li:last-child {
margin-right:0px;
}
.nav {
position: absolute;
bottom:100px;
left:50%;
transform:translate(-50%,-50%);
}
.nav ul .active{
background-color:black;
}
.two, .three, .four {
display:none;
}
的Javascript
//change active class
$('.nav ul').click(function(){
$(this).removeClass('active');
$(this).addClass('active');
});
//Click handlers to change image and active class
$('.first').click(function(){
$('.one').show();
$('.two').hide();
$('.three').hide();
$('.four').hide();
});
$('.second').click(function(){
$('.two').show();
$('.one').hide();
$('.three').hide();
$('.four').hide();
});
$('.third').click(function(){
$('.three').show();
$('.one').hide();
$('.two').hide();
$('.four').hide();
});
$('.fourth').click(function(){
$('.four').show();
$('.one').hide();
$('.three').hide();
$('.two').hide();
});
嘿DinoMyte,非常感謝你的幫忙。 – Kevin
但我有一個問題。作爲一名學生,我試圖瞭解代碼的工作原理。在javascript上的第5-7行,是找到他們選擇的用戶索引值的函數。那麼它匹配容器索引值的索引值?謝謝 – Kevin
既然你在兩個div中都有相同數量的'li',那麼整個想法就是檢查對應的'li'的索引(使顯示圖像的類)與被點擊的相匹配。有一點需要理解和記住的是'this'的概念,它是指調用事件的元素或每個循環當前正在迭代的元素。 $(this).index()給出了li的索引。因此,我們可以比較我們想要展示哪個項目以及要隱藏哪個項目。我希望能讓你對這裏做的事情有一個基本的想法。 – DinoMyte