บทที่ 9 CSS3 Animations ตอน 2
    นอกจากนี้แล้ว CSS3 Animations ยังมีคำสั่งต่างๆอีก (properties) ซึ่งจะช่วยเพิ่มลูกเล่นให้ที่หลากหลายกับ  Animations ได้ ดังนี้

properties               
คำอธิบาย
1 @keyframes คำสั่งในการสร้างภาพ Animations

2 animation-name ชื่อของรูป Animations

3 animation-duration ระยะเวลาของการเคลื่อนไหว จาก ต้นทาง ไป ปลายทาง

4 animation-timing-function รูปแบบการเล่นใน 1 รอบของการเคลื่อนไหว

5 animation-delay เวลาก่อนเริ่มแสดงภาพ เช่น 2s คือต้องรอ 2 วินาทีภาพจึงจะเริ่มแสดง

6 animation-iteration-count รอบในการแสดง สามรถใส่เป็นตัวเลขแทนจำนวนรอบ หรือใส่ infinite หากต้องการให้เล่นไปเรื่อยๆ ไม่มีหยุด

7 animation-direction ควบคุมทิศทางในการเคลื่อนที่ของ ภาพ Animations เช่น alternate คือการเคลื่อนที่ไปและย้อนกลับในทิศทางเดิม
และ normal คือการเคลื่อนที่ไปและกลับมาเริ่มใหม่ที่จุดเริ่มต้น

8 animation-play-state ใช้ในการตั้งค่า การแสดงภาพ Animations โดยสามารถสั่งให้ เล่น (running) หรือ (paused)


 ตัวอย่างเช่น

<html>
<head>
<style> 
div
{width:100px;
height:100px;
background:yellow;
position:relative;

animation-name:myfirst;
animation-duration:5s;
animation-timing-function:linear;
animation-delay:2s;
animation-iteration-count:infinite;
animation-direction:alternate;
animation-play-state:running;

/* Firefox: */
-moz-animation-name:myfirst;
-moz-animation-duration:5s;
-moz-animation-timing-function:linear;
-moz-animation-delay:2s;
-moz-animation-iteration-count:infinite;
-moz-animation-direction:alternate;
-moz-animation-play-state:running;

/* Safari and Chrome: */
-webkit-animation-name:myfirst;
-webkit-animation-duration:5s;
-webkit-animation-timing-function:linear;
-webkit-animation-delay:2s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:alternate;
-webkit-animation-play-state:running;

/* Opera: */
-o-animation-name:myfirst;
-o-animation-duration:5s;
-o-animation-timing-function:linear;
-o-animation-delay:2s;
-o-animation-iteration-count:infinite;
-o-animation-direction:alternate;
-o-animation-play-state:running;}

@keyframes myfirst
{0%   {background:yellow; left:0px; top:0px;}
25%  {background:red; left:200px; top:0px;}
100%  {background:pink; left:200px; top:200px;}}

@-moz-keyframes myfirst /* Firefox */
{0%   {background:yellow; left:0px; top:0px;}
25%  {background:red; left:200px; top:0px;}
100%  {background:pink; left:200px; top:200px;}}

@-webkit-keyframes myfirst /* Safari and Chrome */
{0%   {background:yellow; left:0px; top:0px;}
25%  {background:red; left:200px; top:0px;}
100%  {background:pink; left:200px; top:200px;}}

@-o-keyframes myfirst /* Opera */
{0%   {background:yellow; left:0px; top:0px;}
25%  {background:red; left:200px; top:0px;}
100%  {background:pink; left:200px; top:200px;}}
</style>
</head>
<body>

<p>This example does not work in Internet Explorer.</p>

<div></div>

</body>
</html>


ผลลัพธ์คือ

ดูตัวอย่างที่ 7 คลิกที่นี่


ข้อมูลอ้างอิง
http://www.comsci.in.th/
http://www.w3schools.com

กระทู้ล่าสุดจากเว็บบอร์ด
หัวข้อกระทู้
ตอบ
เปิดดู
ล่าสุด
ช่วยเขียนโค๊ดโปรแกรม C++ ให้หน่อยคับ
โดย ekgarat ส 18 ก.ย. 2010 5:17 pm บอร์ด Programming - C/C++ & java & Python
1
2829
พ 13 ต.ค. 2010 8:41 pm โดย suninja View Topic ช่วยเขียนโค๊ดโปรแกรม C++ ให้หน่อยคับ
mod PM Attachments บอร์ด sfm ไว้สำหรับทำให้การส่ง pm ให้สามารถแนปไฟล์ได้
โดย mindphp ส 18 ก.ย. 2010 11:35 am บอร์ด Free PHP Code Download script
0
2451
ส 18 ก.ย. 2010 11:35 am โดย mindphp View Topic mod PM Attachments บอร์ด sfm ไว้สำหรับทำให้การส่ง pm ให้สามารถแนปไฟล์ได้
mod bookmarks ของ smf ไว้สำหรับเก็บกระทู้ที่ชอบในบอร์ด
โดย mindphp ส 18 ก.ย. 2010 11:31 am บอร์ด Free PHP Code Download script
0
4268
ส 18 ก.ย. 2010 11:31 am โดย mindphp View Topic mod bookmarks ของ smf ไว้สำหรับเก็บกระทู้ที่ชอบในบอร์ด
server รัน php แบบย่อไม่ได้ครับ
โดย pencil ส 18 ก.ย. 2010 9:42 am บอร์ด Programming - PHP
3
1026
ส 18 ก.ย. 2010 11:01 am โดย mindphp View Topic server รัน php แบบย่อไม่ได้ครับ
ช่วยดู code php ให้หน่อยครับ
โดย pencil ศ 17 ก.ย. 2010 10:56 pm บอร์ด Programming - PHP
5
1272
ส 18 ก.ย. 2010 1:55 am โดย mindphp View Topic ช่วยดู code php ให้หน่อยครับ
ข่าววงการ IT กับ 3G ของไทย ผู้บริหาร บมจ.ทีโอที เข้ายื่นศาลปกครองกลางฟ้อง กทช.ไม
โดย imsn ศ 17 ก.ย. 2010 3:53 pm บอร์ด ถาม - ตอบ คอมพิวเตอร์
0
1564
ศ 17 ก.ย. 2010 3:53 pm โดย imsn View Topic ข่าววงการ IT กับ 3G ของไทย ผู้บริหาร บมจ.ทีโอที เข้ายื่นศาลปกครองกลางฟ้อง กทช.ไม
ต้องการ หาคน ทำ โปร แกรม พวกโปรแกรม ขุด บนเวป
โดย Anonymous พฤ 16 ก.ย. 2010 11:14 pm บอร์ด Programming - PHP
0
781
พฤ 16 ก.ย. 2010 11:14 pm โดย บุคคลทั่วไป View Topic ต้องการ หาคน ทำ โปร แกรม   พวกโปรแกรม ขุด บนเวป
Error Saving Phoca File Download ทำการดาน์วโหลดไฟล์ลงเว็บไซต์ แต่เกิดปัญหา..
โดย siwach_2010 พฤ 16 ก.ย. 2010 4:37 pm บอร์ด สอบถามปัญหาการใช้ phpBB3, SMF, Joomla, Wordpress, CMS, CRM
8
4345
พ 22 ก.ย. 2010 3:34 pm โดย mindphp View Topic Error Saving Phoca File Download ทำการดาน์วโหลดไฟล์ลงเว็บไซต์ แต่เกิดปัญหา..