我有50个小区,我正在根据目前的内容安排活动。 然而,我希望根据情况安排活动。
For example, divs are arranged one behind another, just like a photo stack. I want user to first hit first div, then only they should able to hit second div then third div and so on till they reach the end of divs.
由于以下代码用户可打碎机,并采取行动。 但行动需要逐一进行。 之后一分四。 请建议解决办法。
var flag=0;
var flipImage=document.querySelectorAll( .shadow );
for(j=0; j<flipImage.length; j++){
var currentFlipImage=flipImage[j];
if(j==flag){
flag++;
currentFlipImage.addEventListener( click ,flipDown,false);
}
}