Сообщение от Dash
|
после плавной анимации
|
ЦСС тут вовсе ни при чем...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
.foto {
position: relative;
display: inline-block;
}
.test {
position: absolute;
top: 0;
left: 0;
display: none;
}
</style>
<script type='text/javascript'>
$(function(){
$('.foto')
.mouseover(function(){
$(this).children('.test').stop().fadeIn();
})
.mouseout(function(){
$(this).children('.test').stop().fadeOut();
});
});
</script>
</head>
<body>
<span class='foto'>
<img src='http://javascript.ru/forum/images/ca_serenity/misc/logo.gif' />
<img class='test' src='http://javascript.ru/forum/images/smilies/wink.gif' />
</span>
</body>
</html>