在CSS translate3d之后ontransitionend没有绑定

时间:2015-09-29 01:32:41

标签: javascript jquery css3 css-transforms translate3d

我实现了页面的滚动劫持,并且喜欢使用事件处理程序ontransitionend来跟踪CSS3转换的结束,翻译3。

然而,我有时会失去"事件处理程序,它不会触发ontransitionend。

有没有人知道可能会发生什么?

我不想使用jQuery动画,因为它们运行缓慢,而设置超时会导致滞后/闪烁。不确定实现这种效果的其他好方法。

.content {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding: 0;
    .transition(all 1500ms ease); // LESS mixin w/ transition prefixes
}
.page {
    width: 100%;
    height: 100vh;
}

<div class="content-wrapper">
    <div class="content">
        <section class="page target" id="One"></section>
        <section class="page target" id="Two"></section>
        <section class="page target" id="Three"></section>
    </div>
    <div class="footer">
    </div>
</div>


var total_sections = $('.page.target').length;
var is_moving = false;

$(window).on({
    'DOMMouseScroll mousewheel': detectScroll
});

// transitionend, runs into = problems
$('.content, .footer').one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(e) {
    is_moving = false;
});

function detectScroll (e) {
    if(is_moving) {
        return false;
    }
    is_moving = true;
    (function() { 
        scrollPage(e.originalEvent.wheelDelta > 0 ? 'up' : 'down'); 
    })();
    // return false;
}

var curr_section = 0;   // we always start at top of page
function scrollPage(dir) {
    setTarget(curr_section, dir);
}

function setTarget(curr, dir) {
    var target;
    if(dir == 'up') {
        target = curr-1;
    }
    if(dir == 'down') {
        target = curr+1;
    }
    var h = $('.page.target').height();
    target = target * h * -1;

    is_moving = true;

    // jquery animations run slower than css3 transitions :(
    // $('.content, .footer').animate({
    //  'top': target
    // }, 50);

    $('.content, .footer').css({
        'transform': 'translate3d(0px, ' + target + 'px, 0px)'
    });
    // is_moving = false after transition ends

    // using settimeout to reset is_moving causes a "flicker" / jump
    // var transition_speed = 1600;
    // window.setTimeout(function(){
    //  is_moving = false;
    // }, transition_speed);

    // reset current section
    if(dir == 'up') {
        curr_section = curr_section-1;
    }
    if(dir == 'down') {
        curr_section = curr_section+1;
    }
}

2 个答案:

答案 0 :(得分:0)

如何从One切换到开?

$('.content').on('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend','.footer', function(e) { is_moving = false; });

答案 1 :(得分:0)

好的,如果有其他人遇到这个问题,那么找出解决方案。

基本上ontransitionend在用户完全停止物理滚动之前不会触发(因此,在滚动结束时)。

我最终使用当前部分的偏移顶部来确定目标是否被击中/动画结束。但是,遇到了同样的问题。在我实际停止滚动鼠标之前,滚动期间的偏移顶部不会更新;我需要更敏感的东西。

我最后在当前部分使用了.hide()。show(),所以在滚动期间不断更新DOM并现在更新()。顶部更新(即使我还在物理上滚动鼠标滚轮)。 / p>

这有点黑客,但它确实有效。