jQuery Loading Page Effect

Jika masih ada yang bingung bisa langsung lihat hasilnya berikut ini :
Ok langsung saja kita praktekkan bagaimana script dan penerapannya :D :
- Yang pertama adalah letakkan jQuery script di dalam tag <head> , Jika yang sudah memakai script jQuery tidak perlu di tambahkan lagi. Namun jika ada yang belum punya bisa memakai script berikut
http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js .
- Kedua letakkan script berikut tepat di atas kode </body> atau di bawah kode </head>
<script type="text/javascript">
$(document).ready(function(){
$('#page_effect').fadeIn(5000);
});
</script>
Ket : Ganti angka 5000 untuk mengatur berapa lama efek blur terlihat
- Kemudian tambahkan kode berikut tepat di bawah kode <body>
<div id="page_effect" style="display:none;">
- Dan terakhir tambahkan kode </div> tepat di atas kode </body>
<html>Selesai sudah. Sekarang tampilan blog atau website kamu sudah semakin apik. Lihat HASILNYA dan rasakan bedanya. Semoga berhasil ;) .
<head>
<title>JQuery Page Loading Effect</title>
<script type="text/javascript" src="
http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
</head>
<script type="text/javascript">
$(document).ready(function(){
$('#page_effect').fadeIn(5000);
});
</script>
<body>
<div id="page_effect" style="display:none;">
<h1>JQuery Page Loading Effect</h1>
This is page loading effect with JQuery 1<BR>
This is page loading effect with JQuery 2<BR>
This is page loading effect with JQuery 3<BR>
This is page loading effect with JQuery 4<BR>
This is page loading effect with JQuery 5<BR>
This is page loading effect with JQuery 6<BR>
This is page loading effect with JQuery 7<BR>
This is page loading effect with JQuery 8<BR>
This is page loading effect with JQuery 9<BR>
This is page loading effect with JQuery 10<BR>
This is page loading effect with JQuery 11<BR>
This is page loading effect with JQuery 12<BR>
This is page loading effect with JQuery 13<BR>
This is page loading effect with JQuery 14<BR>
</div>
</body>
</html>