CSS3 background image transition

前端 未结 13 2359
梦如初夏
梦如初夏 2020-11-22 07:07

I\'m trying to make a \"fade-in fade-out\" effect using the CSS transition. But I can\'t get this to work with the background image...

The CSS:



        
13条回答
  •  天涯浪人
    2020-11-22 07:48

    If you can use jQuery, you can try BgSwitcher plugin to switch the background-image with effects, it's very easy to use.

    For example :

    $('.bgSwitch').bgswitcher({
            images: ["style/img/bg0.jpg","style/img/bg1.jpg","style/img/bg2.jpg"],
            effect: "fade",
            interval: 10000
    });
    

    And add your own effect, see adding an effect types

提交回复
热议问题