Сообщение от lila73
|
к сожалению, ничего не изменилось
|
Бивас, тест! (с)
<!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'>
* {
margin: 0;
padding: 0;
}
img {
position: absolute;
top: 0;
left: 40px;
}
</style>
<script type='text/javascript'>
$(function () {
$("button").click(function () {
$('img').animate(
{
left: "+50%"
},
{
complete:
function () {
alert('Complete!')
}
}
);
});
});
</script>
</head>
<body>
<img src='http://javascript.ru/forum/images/smilies/smile.gif' />
<button>test</button>
</body>
</html>
Таки работает как надо!