Сообщение от danik.js
|
например background-image:url() нелья плавно изменить
|
Chrome может
<!DOCTYPE html>
<head>
<style type="text/css">
#tile {
width: 72px;
height: 72px;
background-color: #3896F6;
background-image: url('http://javascript.ru/forum/image.php?u=8952&dateline=1362465013');
background-repeat: no-repeat;
border: 3px solid #008E8E;
background-size: cover;
transition: all 2s;
-moz-transition: all 2s; /* Firefox Support */
-webkit-transition: all 2s; /* Chrome and Safari Support */
-o-transition: all 2s; /* Opera Support */
}
#tile:hover {
border-color: #FFFF00;
background-image: url('http://javascript.ru/forum/image.php?u=7416&dateline=1372796129');
}
</style>
<title></title>
</head>
<html>
<body>
<div id="tile">
</div>
</body>
</html>