jquery元素從左上角飛入右下角程式碼例項

antzone發表於2017-04-18

分享一段程式碼例項,它實現了元素從左上角飛入右下角效果。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
</head>
<body>
<input type="button" name="b1" id="b1" value="停止" />
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script>
var time;
deleteMove();
$("input").click(function() {
  $("div").stop();
})
 
function creatMove() {
  var tar = {
    left: 900,
    top: 500
  }
  $(document.body).append("<div class='c1'></div>");
  $(".c1").css({
    width: "20px",
    height: "20px",
    backgroundColor: "red",
    position: "absolute"
  })
  $(".c1").animate(tar, 2000, function() {
    $(this).removeAttr("class").addClass("c2");
    creatMove();
  })
}
 
function deleteMove() {
  creatMove();
  clearInterval(time);
  time = setInterval(function() {
    var a = Math.round(parseFloat($(".c1").css("left")))
    if (900 - a <= 100) {
      $("div").remove(".c2");
    }
  }, 30)
}
</script>
</body>
</html>

相關文章