2016-06-13 53 views
0

我想在我的完整函数中使用一个计数器来确保margin-top的动画在继续之前完成。现在,我在MakeList()和我的Spin()函数中都有计数器,而我的console.log计数器并没有识别counter ++,因为它在动画完成之前触发。没有人问我可以找出原因。完整的功能不强迫jquery等待动画结束

**注意:我不能使用timeOut's,因为时间设置为随机(应该看起来像一台老虎机**)另外,我找不到这个测试平台说的是错误,但是代码在我的机器上运行。真正的脚本2.js是所有我需要显示跨虽然:)

// ******************************************************** 
 
// SLOT MACHINE ICONS. Each array has 3 icons for each slot 
 
// ******************************************************** 
 

 
var array1 = [ 
 
    '<div data-id="0" style="width:100%; background:#fff; height:150px;"></div>', 
 
    '<div data-id="1" style="width:100%; background:#ccc; height:150px;"></div>', 
 
    '<div data-id="0" style="width:100%; background:#666; height:150px;"></div>' 
 
] 
 
var array2 = [ 
 
    '<div data-id="0" style="width:100%; background:#fff; height:150px;"></div>', 
 
    '<div data-id="1" style="width:100%; background:#ccc; height:150px;"></div>', 
 
    '<div data-id="0" style="width:100%; background:#666; height:150px;"></div>' 
 
] 
 
var array3 = [ 
 
    '<div data-id="0" style="width:100%; background:#fff; height:150px;"></div>', 
 
    '<div data-id="1" style="width:100%; background:#ccc; height:150px;"></div>', 
 
    '<div data-id="0" style="width:100%; background:#666; height:150px;"></div>' 
 
] 
 

 

 
// Generates random # between 0 and 2. Used for choosing winner and creating random slots 
 
function getRandomInt(min, max) { 
 
    return Math.floor(Math.random() * (max - min + 1)) + min; 
 
} 
 

 
// Generates winning array item between coffee, tea and espresso 
 
function win(whatArray){ 
 
    \t var arrayItem = getRandomInt(0,2); 
 
    var winItem = whatArray[arrayItem]; 
 
    return winItem; 
 
} 
 

 
// Populates each slot with random icons to spin through 
 
var makeList = function(whatArray, whatSlot){ 
 
\t var slotArray = []; 
 
    
 
\t for(i=0; i < 100; i++){ 
 

 
    var randNum = getRandomInt(0,2); // Generate random number 
 
    var findItem = whatArray[randNum]; // Use random number to find associated array item 
 
    var slot = whatSlot; // Set which slot to append array item to (first, second or third) 
 
    $('#' + slot).append('<div>'+findItem+'</div>'); // Append icon to HTML 
 
    } 
 
    
 
    var winItem = win(whatArray); // Generate winning icon for slot 
 
    console.log("winner " + winItem); 
 
    $('#' + slot).append('<div>'+winItem+'</div>'); // Append winning icon to end of list 
 
} 
 

 

 

 

 

 
// Spin the slot and win some caffeine! 
 
function Spin(){ 
 

 
\t window.counter = 0; 
 

 
\t // Generate lists for each slot 
 
\t makeList(array1, 'slot-1'); 
 
\t makeList(array2, 'slot-2'); 
 
\t makeList(array3, 'slot-3'); 
 

 
\t MoveSlots($('#slot1-wrapper'), 2500); 
 
\t MoveSlots($('#slot2-wrapper'), 5200); 
 
\t MoveSlots($('#slot3-wrapper'), 500); 
 

 
\t //var running = true; 
 
\t // console.log(running); 
 

 
\t var slot1attr = $('#slot1-wrapper div').children().last().attr('data-id'); 
 
\t var slot2attr = $('#slot2-wrapper div').children().last().attr('data-id'); 
 
\t var slot3attr = $('#slot3-wrapper div').children().last().attr('data-id'); 
 
\t 
 
\t \t console.log('counter = ' + counter); 
 

 
\t \t if(counter > 0){ 
 
\t \t \t if(slot1attr == slot2attr && slot1attr == slot3attr){ 
 

 
\t \t \t \t console.log("WIN"); 
 
\t \t \t } else { 
 
\t \t \t \t console.log("LOSE"); 
 
\t \t \t } 
 
\t \t } 
 

 

 
\t function MoveSlots(el, speed){ 
 

 
\t \t var time = speed; 
 
\t \t time += Math.round(Math.random()*10000); 
 
\t \t el.stop(true,true); 
 

 
\t \t var marginTop = -(100 * 150); //change 100 to height placeholder 
 

 
\t \t var running = true; 
 

 
\t \t el.animate({ 
 
\t \t \t 'margin-top':'+='+marginTop+'px' 
 
\t \t }, { 
 
\t \t \t 'duration' : time, 
 
\t \t \t 'easing' : 'easeInOutQuint', 
 
\t \t \t complete: function(){ 
 

 
\t \t \t \t console.log('yolo'); 
 
\t \t \t \t //$(this).on('animationend webkitAnimationEnd oAnimationEnd MSAnimationEnd', function(){ 
 
\t \t \t \t \t counter++; 
 
\t \t \t \t \t console.log(counter); 
 
\t \t \t \t //}) 
 

 
\t \t \t } \t 
 
\t \t }); 
 

 
\t } // end MoveSlots 
 
} // end Spin
body{ 
 
/*background-color:white;*/ 
 
padding:50px; 
 
margin:50px; 
 
background: #505f77 !important; 
 
} 
 

 
#slotWrapper { 
 
    width:410px; 
 
    height:150px; 
 
    margin:50px auto; 
 
    overflow: hidden; 
 
    position:relative; 
 
    border:1px solid #f00; 
 

 
} 
 
#slot1-wrapper, #slot2-wrapper, #slot3-wrapper { 
 
\t margin-top:0; 
 
\t position: relative; 
 
} 
 
.slot { 
 
    width:120px; 
 
    height:150px; 
 
    margin-right:25px; 
 
    text-align:center; 
 
    float:left; 
 
    position: absolute; 
 
} 
 
#slot-3 { 
 
\t margin-right:0; 
 
} 
 
#slot-1 { 
 
\t top:0; 
 
\t left:0; 
 
} 
 
#slot-2 { 
 
\t top:0; 
 
\t left:145px; 
 
} 
 
#slot-3 { 
 
\t top:0; 
 
\t left:290px; 
 
} 
 
.slot div { 
 
    width:120px; 
 
    height:150px; 
 
} 
 

 
.slot div img { 
 
    width:100%; 
 
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<!DOCTYPE html> 
 
<html lang="en"> 
 
<head> 
 
\t <meta charset="UTF-8"> 
 
\t <title>Document</title> 
 

 
</head> 
 
<body> 
 

 
<link rel="stylesheet" type="text/css" href="css/style.css" /> 
 
<!-- <link rel="stylesheet" type="text/css" href="css/default.css" /> 
 
<link rel="stylesheet" type="text/css" href="css/component.css" /> --> 
 
<div style="text-align:center"> 
 
<input type="button" value="spin!" onClick="Spin();" style="margin-top:4px;"> 
 
</div> 
 

 
<div id="slotWrapper"> 
 

 
    <div id="slot1-wrapper"> 
 
    <div id="slot-1" class="slot"></div> 
 
    </div> 
 
    <div id="slot2-wrapper"> 
 
    <div id="slot-2" class="slot"></div> 
 
    </div> 
 
    <div id="slot3-wrapper"> 
 
    <div id="slot-3" class="slot"></div> 
 
    </div> 
 
    
 
</div> 
 

 

 
</body> 
 
</html>

+1

完整的功能正在工作,问题是,它是异步执行 –

+0

这是惊人的!谢谢!你有没有链接到什么文章或视频什么.promise()确实?我一直在寻找,并发现我无法理解的与此有关的任何事情......(或者对假人的简要描述)再次感谢! @ArunPJohny – user1607991

+1

http://api.jquery.com/jQuery.when/ –

回答

2

问题是complete异步执行拿到点,即反条件是在动画完成之前执行的。

您可以使用动画承诺来解决它

// ******************************************************** 
 
// SLOT MACHINE ICONS. Each array has 3 icons for each slot 
 
// ******************************************************** 
 

 
var array1 = [ 
 
    '<div data-id="0" style="width:100%; background:#fff; height:150px;"></div>', 
 
    '<div data-id="1" style="width:100%; background:#ccc; height:150px;"></div>', 
 
    '<div data-id="0" style="width:100%; background:#666; height:150px;"></div>' 
 
] 
 
var array2 = [ 
 
    '<div data-id="0" style="width:100%; background:#fff; height:150px;"></div>', 
 
    '<div data-id="1" style="width:100%; background:#ccc; height:150px;"></div>', 
 
    '<div data-id="0" style="width:100%; background:#666; height:150px;"></div>' 
 
] 
 
var array3 = [ 
 
    '<div data-id="0" style="width:100%; background:#fff; height:150px;"></div>', 
 
    '<div data-id="1" style="width:100%; background:#ccc; height:150px;"></div>', 
 
    '<div data-id="0" style="width:100%; background:#666; height:150px;"></div>' 
 
] 
 

 

 
// Generates random # between 0 and 2. Used for choosing winner and creating random slots 
 
function getRandomInt(min, max) { 
 
    return Math.floor(Math.random() * (max - min + 1)) + min; 
 
} 
 

 
// Generates winning array item between coffee, tea and espresso 
 
function win(whatArray) { 
 
    var arrayItem = getRandomInt(0, 2); 
 
    var winItem = whatArray[arrayItem]; 
 
    return winItem; 
 
} 
 

 
// Populates each slot with random icons to spin through 
 
var makeList = function(whatArray, whatSlot) { 
 
    var slotArray = []; 
 

 
    for (i = 0; i < 100; i++) { 
 

 
    var randNum = getRandomInt(0, 2); // Generate random number 
 
    var findItem = whatArray[randNum]; // Use random number to find associated array item 
 
    var slot = whatSlot; // Set which slot to append array item to (first, second or third) 
 
    $('#' + slot).append('<div>' + findItem + '</div>'); // Append icon to HTML 
 
    } 
 

 
    var winItem = win(whatArray); // Generate winning icon for slot 
 
    console.log("winner " + winItem); 
 
    $('#' + slot).append('<div>' + winItem + '</div>'); // Append winning icon to end of list 
 
} 
 

 

 

 

 

 
// Spin the slot and win some caffeine! 
 
function Spin() { 
 

 
    var counter = 0; 
 

 
    // Generate lists for each slot 
 
    makeList(array1, 'slot-1'); 
 
    makeList(array2, 'slot-2'); 
 
    makeList(array3, 'slot-3'); 
 

 
    var p1 = MoveSlots($('#slot1-wrapper'), 2500); 
 
    var p2 = MoveSlots($('#slot2-wrapper'), 5200); 
 
    var p3 = MoveSlots($('#slot3-wrapper'), 500); 
 

 
    $.when(p1, p2, p3).then(function() { 
 
     //var running = true; 
 
     // console.log(running); 
 

 
     var slot1attr = $('#slot1-wrapper div').children().last().attr('data-id'); 
 
     var slot2attr = $('#slot2-wrapper div').children().last().attr('data-id'); 
 
     var slot3attr = $('#slot3-wrapper div').children().last().attr('data-id'); 
 

 
     console.log('counter = ' + counter); 
 

 
     if (counter > 0) { 
 
     if (slot1attr == slot2attr && slot1attr == slot3attr) { 
 

 
      console.log("WIN"); 
 
     } else { 
 
      console.log("LOSE"); 
 
     } 
 
     } 
 

 
    }); 
 

 
    function MoveSlots(el, speed) { 
 

 
     var time = speed; 
 
     time += Math.round(Math.random() * 10000); 
 
     el.stop(true, true); 
 

 
     var marginTop = -(100 * 150); //change 100 to height placeholder 
 

 
     var running = true; 
 

 
     el.animate({ 
 
      'margin-top': '+=' + marginTop + 'px' 
 
     }, { 
 
      'duration': time, 
 
      'easing': 'easeInOutQuint', 
 
      complete: function() { 
 
      console.log('yolo'); 
 
      counter++; 
 
      console.log(counter); 
 
      } 
 
     }); 
 

 
     return el.promise(); 
 
     } // end MoveSlots 
 
    } // end Spin
body { 
 
    /*background-color:white;*/ 
 
    padding: 50px; 
 
    margin: 50px; 
 
    background: #505f77 !important; 
 
} 
 
#slotWrapper { 
 
    width: 410px; 
 
    height: 150px; 
 
    margin: 50px auto; 
 
    overflow: hidden; 
 
    position: relative; 
 
    border: 1px solid #f00; 
 
} 
 
#slot1-wrapper, 
 
#slot2-wrapper, 
 
#slot3-wrapper { 
 
    margin-top: 0; 
 
    position: relative; 
 
} 
 
.slot { 
 
    width: 120px; 
 
    height: 150px; 
 
    margin-right: 25px; 
 
    text-align: center; 
 
    float: left; 
 
    position: absolute; 
 
} 
 
#slot-3 { 
 
    margin-right: 0; 
 
} 
 
#slot-1 { 
 
    top: 0; 
 
    left: 0; 
 
} 
 
#slot-2 { 
 
    top: 0; 
 
    left: 145px; 
 
} 
 
#slot-3 { 
 
    top: 0; 
 
    left: 290px; 
 
} 
 
.slot div { 
 
    width: 120px; 
 
    height: 150px; 
 
} 
 
.slot div img { 
 
    width: 100%; 
 
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.js"></script> 
 
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/redmond/jquery-ui.css" rel="stylesheet" /> 
 
<div style="text-align:center"> 
 
    <input type="button" value="spin!" onClick="Spin();" style="margin-top:4px;"> 
 
</div> 
 

 
<div id="slotWrapper"> 
 

 
    <div id="slot1-wrapper"> 
 
    <div id="slot-1" class="slot"></div> 
 
    </div> 
 
    <div id="slot2-wrapper"> 
 
    <div id="slot-2" class="slot"></div> 
 
    </div> 
 
    <div id="slot3-wrapper"> 
 
    <div id="slot-3" class="slot"></div> 
 
    </div> 
 

 
</div>