suchen

Heim  >  Fragen und Antworten  >  Hauptteil

CSS-Karussellwechsel-Animation – Stapelüberlauf

Wie im Bild gezeigt

Eine in JS geschriebene Animation. Wenn ein Übergangseffekt festgelegt ist, tritt eine solche Situation auf. Wie kann JS diese Situation ändern?

function moveSlide() {
  var slides = $('.slide');
  
  // for (var i = 0; i < slides.length; i++) {
    slides.forEach(function(item) {
      var leftValue = parseInt(item.style.left);

      if (leftValue == -100) {
        leftValue = 100;
        item.style.left = leftValue + '%';
      }else if(leftValue == 100 || leftValue == 0){
        leftValue -= 100;
        item.style.left = leftValue + '%';
      }
    }, this);
習慣沉默習慣沉默2755 Tage vor894

Antworte allen(1)Ich werde antworten

  • 学习ing

    学习ing2017-06-12 09:35:00

    1.leftValue=0 >> leftValue -=100 >> leftValue=-100
    2.leftValue=-100 >> leftValue = 100
    3.leftValue=100 >> leftValue -=100 >> leftValue=-100
    你的leftValue就只有两个值在变化啊,你的判断写的不对。既然你用过渡动画建议使用animate();

    Antwort
    0
  • StornierenAntwort