<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>自定义动画</title>
<script type="text/javascript" src="jquery.1.12.4.js"></script>
<style> * {
margin: 0;
}
</style> <script type="text/javascript"> var moveToLeft = function () {
$("#topImg").animate( {
"left": "0"
}
, "slow", moveToRight);
}
;
var moveToRight = function () {
$("#topImg").animate( {
"left": "100px"
}
, "slow", moveToLeft);
}
;
$(function () {
$("button").click(moveToRight);
}
);
</script></head><body><button>点击我右移100px</button><br/><br/><br/><br/><img id="topImg" style="position: absolute;
left: 0" src="图片1_30.jpg"/></body></html>
Copyright © 2019- gamedaodao.com 版权所有 湘ICP备2022005869号-6
违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com
本站由北京市万商天勤律师事务所王兴未律师提供法律服务