Сообщение от murad30
|
Чего то я не догоняю как это сделать.
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div {
width: 50px;
height: 50px;
cursor: pointer;
border: 1px solid;
}
</style>
<script type="text/javascript">
function Go(Obj) {
var inc=10
var i=(Obj.style.width)? Obj.style.width: 50
i=parseInt(i)
if (i>=100) return
Obj.style.width=i+inc+'px'
setTimeout(function(){Go(Obj)},1)
}
</script>
</head>
<body>
<div onclick='Go(this)'>
</div>
</body>
</html>
Но ты используешь ЖиКвери... Т.ч. Х/з чего он у тебя "движется рывками"...