Fade effect left to right on a image

后端 未结 3 1097
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;").

    0 讨论(0)
  • 2021-01-14 23:10

    You can try with this, I used to work with it on my previous project.

    http://jonobr1.github.com/diagonalFade/

    Hope it fits your needs.

    Regards.

    0 讨论(0)
  • 2021-01-14 23:15

    By 'But i want, this effect get left to right', do you mean to refer this one?

    http://www.oik-plugins.com/wordpress-plugins-from-oik-plugins/wordpress-plugins/oik-nivo-slider/nivo-settings/nivo-slider-transition-effects/nivo-slider-effectslicedownright/

    If yes, then you can use the effect called as sliceDownRight.

    0 讨论(0)
提交回复
热议问题