引导程序进度无效的Jquery动画宽度百分比

时间:2017-02-02 07:25:39

标签: javascript jquery html css twitter-bootstrap

实际上我在项目中有两个表单,如果用户完成一个表单并单击提交,他将被带到下一个表单,所以我使用顶部的进度条显示表单进度。

如果用户完成第一个表单,则会将宽度设置为50%,如果用户完成第二个表单,则会将宽度设置为100%。

问题是宽度为50%的动画效果很好,但宽度为100%的动画会抛出一些较高的范围值,如315。***%,这会使进度条无法正常制作动画。

下面是小提琴的链接,其中button1(50%)用于第一种形式,button2(100%)用于第二种形式。

https://jsfiddle.net/mohamedmusthafac/yeaht53q/

以下是jquery代码: -

$(document).ready(function(){
$("#but1").on("click", function(){
$(".progress-bar").stop().animate({width:'50%'}, 1500);
});
$("#but2").on("click", function(){
$(".progress-bar").stop().animate({width:'100%'},1500).stop();
});
});

2 个答案:

答案 0 :(得分:1)

你已经给出了一个解决方案,但看起来行为可能就像jQuery动画功能的行为方式。我想我会提供一个答案来解释这种行为。我不确定这是一个错误或预期的行为。对我来说,它看起来更像一个bug。

调用animate函数时,在内部调用adjustCSS函数。调用adjustCSS的callstack很长(animate() - > dequeue() - > doAnimation() - > Animation() - > jquery.map() - > createTween() - >动画。 Tweeners。* 0> adjustCSS())以防万一你对流程感兴趣。

在adjustCSS内部,代码执行路径在进度条为0%时采用不同的路径集,并在进度条为50%时采用不同的路径集。

如果你看到adjustCSS

function adjustCSS( elem, prop, valueParts, tween ) {
var adjusted,
    scale = 1,
    maxIterations = 20,
    currentValue = tween ?
        function() {
            return tween.cur();
        } :
        function() {
            return jQuery.css( elem, prop, "" );
        },
    initial = currentValue(),
    unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),

    // Starting value computation is required for potential unit mismatches
    initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
        rcssNum.exec( jQuery.css( elem, prop ) );

if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {

    // Trust units reported by jQuery.css
    unit = unit || initialInUnit[ 3 ];

    // Make sure we update the tween properties later on
    valueParts = valueParts || [];

    // Iteratively approximate from a nonzero starting point
    initialInUnit = +initial || 1;

    do {

        // If previous iteration zeroed out, double until we get *something*.
        // Use string for doubling so we don't accidentally see scale as unchanged below
        scale = scale || ".5";

        // Adjust and apply
        initialInUnit = initialInUnit / scale;
        jQuery.style( elem, prop, initialInUnit + unit );

    // Update scale, tolerating zero or NaN from tween.cur()
    // Break the loop if scale is unchanged or perfect, or if we've just had enough.
    } while (
        scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations
    );
}

if ( valueParts ) {
    initialInUnit = +initialInUnit || +initial || 0;

    // Apply relative offset (+=/-=) if specified
    adjusted = valueParts[ 1 ] ?
        initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
        +valueParts[ 2 ];
    if ( tween ) {
        tween.unit = unit;
        tween.start = initialInUnit;
        tween.end = adjusted;
    }
}
return adjusted;
}

当您单击第一个按钮时,initialInUnit为0并且它没有通过if条件

if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {

直接跳到

if ( valueParts ) {

但是第二次单击按钮时,它会经历上面的第一个if条件,因为进度条已经达到50%的宽度。现在是什么让百分比达到315%或者它出现的任何数字都是奇怪的行为。

当它经过if条件时,有一个声明:

        jQuery.style( elem, prop, initialInUnit + unit );

这里jQuery将元素的width属性设置为initialInUnit中的值,这是以像素为单位的进度条的宽度,它以%为单位追加单位。因此,它不会将宽度设置为50%到100%,而是将宽度设置为315%到100%。 315%可以根据进度条的宽度而改变。

事实上,您甚至不需要第二个按钮来复制行为,如果您第二次单击按钮1,您可以看到它的动画效果从315%(或其他)到50%。

所以我不确定它是不是一个bug(虽然它看起来像一个)。调整后的CSS可能适用于其他条件。打开jQuery团队的问题以检查adjustCSS函数中initialInUnit值赋值的预期行为可能是值得的。

adjustCSS函数是jQuery代码的一部分,如here

所示

答案 1 :(得分:0)

我通过使用以下代码得到了解决方案,但我仍然不知道,为什么我没有使用上述方法得到解决方案

$("#but2").on("click", function(){
   $('.progress-bar').animate({'width':($('.progress-bar').parent().width())+'px'}, 3000);
});