Сообщение от MadChild
|
по умолчанию в css напсиано
background-position: left -15px;
надо что бы при наведении фон плавно перекатился до
background-position: left 0;
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
div {
width: 200px;
height: 100px;
background: url('http://javascript.ru/forum/images/ca_serenity/misc/logo.gif') no-repeat;
background-position: -50px 0;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('div').mouseover(function(){
$(this).css({
'background-position': '0 0'
});
});
$('div').mouseout(function(){
$(this).css({
'background-position': '-50px 0'
});
});
});
</script>
</head>
<body>
<div></div>
</body>
</html>