เรียนรู้ที่จะสร้างภาพเคลื่อนไหว HTML โดยใช้ JavaScript
หน้าเว็บพื้นฐาน
แสดงให้เห็นถึงวิธีการสร้างภาพเคลื่อนไหวด้วย JavaScript HTML เราจะใช้หน้าเว็บที่ง่าย:
ตัวอย่าง
<!DOCTYPE html>
<html>
<body>
<h1>My First
JavaScript Animation</h1>
<div id="animation">My animation will go here</div>
</body>
</html>
ลองตัวเอง» สร้างแอนิเมชั่คอนเทนเนอร์
ภาพเคลื่อนไหวที่ทุกคนควรจะเทียบกับองค์ประกอบภาชนะ
ตัวอย่าง
<div id ="container">
<div id ="animate">My
animation will go here</div>
</div>
รูปแบบองค์ประกอบ
องค์ประกอบภาชนะควรได้รับการสร้างขึ้นด้วยลักษณะ = "ตำแหน่ง: ญาติ"
องค์ประกอบภาพเคลื่อนไหวควรจะสร้างขึ้นด้วยลักษณะ = "position: absolute"
ตัวอย่าง
#container {
width: 400px;
height:
400px;
position: relative;
background: yellow;
}
#animate {
width: 50px;
height:
50px;
position: absolute;
background: red;
}
ลองตัวเอง» รหัสนิเมชั่น
ภาพเคลื่อนไหว JavaScript จะทำโดยการเขียนโปรแกรมเปลี่ยนแปลงอย่างค่อยเป็นค่อยไปในรูปแบบขององค์ประกอบ
การเปลี่ยนแปลงจะถูกเรียกโดยจับเวลา เมื่อช่วงจับเวลาที่มีขนาดเล็ก, ภาพเคลื่อนไหวที่มีลักษณะต่อเนื่อง
รหัสพื้นฐานคือ:
ตัวอย่าง
var id = setInterval(frame, 5);
function frame() {
if (/*
test for finished */) {
clearInterval(id);
} else {
/* code to change the element style */
}
}
สร้างภาพเคลื่อนไหวโดยใช้ JavaScript
ตัวอย่าง
function myMove() {
var elem =
document.getElementById("animate");
var pos = 0;
var id = setInterval(frame, 5);
function frame() {
if (pos ==
350) {
clearInterval(id);
} else {
pos++;
elem.style.top = pos + 'px';
elem.style.left = pos + 'px';
}
}
}
ลองตัวเอง»