CSS3 background image transition

前端 未结 13 2337
梦如初夏
梦如初夏 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:38

    Salam, this answer works only in Chrome, cause IE and FF support color transition.

    There is no need to make your HTML elements opacity:0, cause some times they contain text, and no need to double your elements!.

    The question with link to an example in jsfiddle needed a small change, that is to put an empty image in .title a like background:url(link to an empty image); same as you put it in .title a:hover but make it empty image, and the code will work.

    .title a {
    display: block;
    width: 340px;
    height: 338px;
    color: black;
    background: url(https://upload.wikimedia.org/wikipedia/commons/5/59/Empty.png) repeat;
    /* TRANSISITION */
    transition: background 1s;
    -webkit-transition: background 1s;
    -moz-transition: background 1s;
    -o-transition: background 1s;
      }
      .title a:hover{   background: transparent;
       background: url(https://lh3.googleusercontent.com/-p1nr1fkWKUo/T0zUp5CLO3I/AAAAAAAAAWg/jDiQ0cUBuKA/s800/red-pattern.png) repeat;
    /* TRANSISITION */
    transition: background 1s;
    -webkit-transition: background 1s;
    -moz-transition: background 1s;
    -o-transition: background 1s;
    }
    

    Check this out https://jsfiddle.net/Tobasi/vv8q9hum/

提交回复
热议问题