本文介绍了在图像上从左到右淡入淡出效果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我具有淡入淡出效果结构.具有以下内容:

I have fade effect structure. With the following:

  <img src='firstStar.jpg' alt='star image' id='firstStar' />

    var loopImages = function(){

         $('#firstStar').fadeIn(1500, function(){

                   $('#firstStar').fadeOut(1500, loopImages);
         });
    }
    loopImages();

正在工作.但是我想要,这种效果从左到右.有可能吗?

It's working. But i want, this effect get left to right. Is it possible?

推荐答案

您可以尝试使用animate

$(document).ready(function(){
    $("#firstStar").animate({left:200, opacity:"show"}, 1500);
});

确保div最初是隐藏的(样式="display:none;").

Make sure the div is initially hidden (style="display:none;").

这篇关于在图像上从左到右淡入淡出效果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 18:50