0
我想隱藏溢出來隱藏幻燈片中的第二個圖像(如果我不這樣做,會在我的網站底部創建額外的空間),但是當我這樣做時,它也會隱藏下一個箭頭和上一個箭頭。 ..我如何分開它們並保持箭頭位置正確?如何隱藏幻燈片上的溢出而不隱藏箭頭?
我該如何讓它們響應,讓我們說使用百分比的寬度,而不是錯位?對不起,很抱歉。
請幫忙! 謝謝。
這是幻燈片代碼: HTML
<div class="diy-slideshow">
<figure class="show"> <img src="img/image1.jpg" width="100%" /></figure>
<figure><img src="img/image2.jpg" width="100%" /></figure>
<span class="prev"><img src="prev.png" width="30px"/></span> <span class="next">
<img src="next.png" width="30px"/></span>
</figure>
CSS
.diy-slideshow {
position: relative;
display: block;
overflow: visible;
width: 90%;
margin-left: 5%;
margin-right: 5%;
}
figure{
position: absolute;
opacity: 0;
overflow: hidden;
transition: 1s opacity;
}
figure.show{
opacity: 1;
position: static;
overflow: hidden;
transition: 1s opacity;
}
.next, .prev{
color: #fff;
position: absolute;
top: 50%;
z-index: 1;
opacity: .5;
user-select: none;
}
.next:hover, .prev:hover{
cursor: pointer;
opacity: 1;
}
.next{
right: -4%;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.prev{
left: -4%;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
的Javascript
<script language="JavaScript1.2">
(function(){
var counter = 0,
$items = document.querySelectorAll('.diy-slideshow figure'),
numItems = $items.length;
var showCurrent = function(){
var itemToShow = Math.abs(counter%numItems);
[].forEach.call($items, function(el){
el.classList.remove('show');
});
$items[itemToShow].classList.add('show');
};
document.querySelector('.next').addEventListener('click', function() {
counter++;
showCurrent();
}, false);
document.querySelector('.prev').addEventListener('click', function() {
counter--;
showCurrent();
}, false);
})();
</script>
它的工作! 但是過渡動畫停止工作。是因爲它是顯示:被阻止?你知道我該如何解決這個問題嗎?非常感謝! – Owly 2014-10-02 21:18:27
我在我的回答中發了一個新的版本 – OxyDesign 2014-10-02 21:53:20
謝謝,它工作! :) – Owly 2014-10-02 22:34:35