例子:jsfiddle
<style>
#slider-outer {
width: 400px;
overflow: hidden;
}
#slider-inner {
width: 1200px;
overflow: visible;
height: 200px;
position: relative;
}
#slider-inner div {
background: ;
width: 200px;
height: 200px;
float: left;
}
.a{background: red;}
.b{background: green;}
.c{background: blue;}
.d{background: yellow;}
.e{background: grey;}
.f{background: coral;}
.g{background: olive;}
</style>
<div id="slider-outer">
<div id="slider-inner">
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
<div class="e"></div>
<div class="f"></div>
<div class="g"></div>
</div>
</div>
$(document).ready(function(){
$('#slider-inner').click(function(){
var scrollAmount = $(this).width() - $(this).parent().width();
var currentPos = Math.abs(parseInt($(this).css('left')));
var remainingScroll = scrollAmount - currentPos;
var nextScroll = Math.floor($(this).parent().width()/2);
if (remainingScroll < nextScroll) {
nextScroll = remainingScroll;
}
if (currentPos < scrollAmount) {
$(this).animate({'left':'-=' + nextScroll}, 'slow');
console.log(currentPos)
}
else {
$(this).animate({'left':'0'}, 'fast');
}
});
});
我會通過學習jQuery和一些javascript的過程,我遇到了一個簡單滑塊的示例,並且正在瀏覽代碼行並理解它是如何工作的。除了var = currentPos
返回到控制檯的值外,我瞭解了所有內容。
該值在第一次點擊時返回0,這讓我感到困惑,因爲我認爲它應該是-200px
,因爲滑塊內部正在將-200px
移動到左側?
有人可以請解釋爲什麼變量返回值是它的控制檯?
感謝
相關代碼必須是**中的問題,而不僅僅是鏈接。 – 2014-12-19 08:55:24
動畫完成後,所以變量currentPos將有初始值,即0. – anpsmn 2014-12-19 09:04:23
爲什麼downvote憤怒? OP努力提供一個MCVE並解釋她得到的與她期望的結果。她唯一的罪就是不知道我們希望代碼被輸入而不是鏈接。這是一個很好的問題。 – RandomSeed 2014-12-19 09:39:41