Fade effect left to right on a image

后端 未结 3 1123
Happy的楠姐
Happy的楠姐 2021-01-14 22:30

I have fade effect structure. With the following:

  \'star

    var loopImages = function(){         


        
3条回答
  •  花落未央
    2021-01-14 23:06

    You can try something like this with animate

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

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

提交回复
热议问题