मैं सीएसएस संक्रमण का उपयोग करके "फीका-इन फीका-आउट" प्रभाव बनाने की कोशिश कर रहा हूं। लेकिन मैं पृष्ठभूमि छवि के साथ काम करने के लिए इसे प्राप्त नहीं कर सकता ...
सीएसएस:
.title a {
display: block;
width: 340px;
height: 338px;
color: black;
background: transparent;
/* TRANSITION */
-webkit-transition: background 1s;
-moz-transition: background 1s;
-o-transition: background 1s;
transition: background 1s;
}
.title a:hover {
background: transparent;
background: url(https://lh3.googleusercontent.com/-p1nr1fkWKUo/T0zUp5CLO3I/AAAAAAAAAWg/jDiQ0cUBuKA/s800/red-pattern.png) repeat;
/* TRANSITION */
-webkit-transition: background 1s;
-moz-transition: background 1s;
-o-transition: background 1s;
transition: background 1s;
}
देख लो: http://jsfiddle.net/AK3La/
background-image
एक एनिमेटेबल प्रॉपर्टी ( w3.org/TR/css3-transitions/#animatable-properties ) नहीं है, इसलिए आपका समाधान मानक अनुरूप नहीं है।