|
|
|
jQuery ใครก็ได้ช่วยเรื่องการ loading หน้า page คือเราจะเอาสถานะว่าการโหลดหน้าเพจได้ไปกี่เปอร์เซนแล้ว |
|
|
|
|
|
|
|
ผมทำได้แล้วเลยเอามาแบ่งปัน ตัวอย่างโค้ดครับ ลองเอาปรับใช้กันเอานะครับ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="jquery.js"></script>
<script>
keep_width = 1;
function stop_preload(){
$('div.c1').css('background-color','green');
$('div.c1').css('width','100px'); // ตั้งค่าให้กราฟ 100 % ไปเลย
$('span.c1').text("100 %");
clearInterval(t); // หยุดการวิ่งของกราฟ
}
function play_preload(){
$('div.c1').css('width',keep_width+'px');
$('span.c1').text(keep_width+" %");
$('span.c2').text(keep_width+" %");
if(keep_width > 60){ // ถ้า 60 เปอร์เซนเป็นสี เขียว
$('div.c1').css('background-color','green');
}
else
if(keep_width > 40){ // ถ้า 40 สีส้ม
$('div.c1').css('background-color','orange');
}
if(keep_width == 100){ // โหลดถึง 100 ให้หยุด
stop_preload();
}
else{
keep_width = keep_width+1; // บวกเปอร์เซนไปเรื่อยๆ
}
}
window.onload = stop_preload ; // ถ้าข้อมูลทั้งหมดถูกโหลดมาหมดแล้วก็ให้ เสร็จสิ้นการโหลดไปเลย
</script>
</head>
<body>
<div class="c1" style="background-color:#FF0000;width:0px; height:20px"></div>
<br/>
โหลดเสร็จสมบูรณ์ <span class="c1"></span>
<br/>
ใช้เวลาในการในการโหลด <span class="c2"></span> ถึงเสร็จสิ้น
<br/><br/>
<script>
t = setInterval('play_preload()',50) ;
</script>
<span style="color:#FF0000"> หมายเหตุ จะเห็นความเปลี่ยนแปลง ต้องมีข้อมูลที่เยอะหรือใช้เวลาในการโหลดนาน</span><br/><br/>
<div class="images"><img src="http://www.entheosweb.com/tutorials/coreldraw/images/party_poster/party2.jpg" width="300"><br /></div>
<div class="images"><img src="http://www.entheosweb.com/tutorials/coreldraw/images/illustrative_text/poster.jpg" width="300"><br /></div>
</body>
</html>
|
ประวัติการแก้ไข 2012-06-17 23:56:10
|
|
|
|
Date :
2012-06-17 23:55:47 |
By :
bank1324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แจ่มเลยครับ
|
|
|
|
|
Date :
2012-06-18 06:01:34 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สวดยวดดดดคร่ะ ก้อบไปใช้ซะเรยยย
|
|
|
|
|
Date :
2012-06-18 18:34:28 |
By :
Th@iDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าไม่ต้องการเส้นตอนโหลดเสร็จแล้ว แก้คำสั่งตรงไหนเหรอครับ
|
|
|
|
|
Date :
2017-09-23 12:40:20 |
By :
good |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เส้นอะไรครับ เส้นเล็ก หรือ บะหมี่??
|
|
|
|
|
Date :
2017-09-25 08:49:33 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|