|
|
#1 (permalink) |
|
Üyelik Tarihi: 18.04.2002
Yer: İstanbul
Yaş: 26
Mesaj: 8
|
Status Bar, Not : Önemli
Selamlar, Yapmak İstediğim Şu Bir Popup Pencere Açtım. ve Normal Explorer Penceresinde Biliyorsunuz Status Bar var ve Burada Yüklenme Durumunu Gösteren Bir Mavi (Setup Hücresine Benzer) Bar Var Ben Popup ta Status Barı Açmak İstemiyorum Sadece Status Bar daki Mavi Barı Sayfanın Bir Köşesine Koymak İstiyorum Yani Sayfa Yüklenirken Benim Koyduğum Yerde Gözükecek Status Barda Yazmayacak Buradaki Amaç Popup Pencerenin Yüklenme Durumunu Göstermek Ama Status Barı Açmadan Bu Arada İstediğim image Preloading Değil Birnevi Page Loading Yardımlarınız İçin Şimdiden Teşekkürler
__________________
Dünya - Yeni Bir Kaos'mu Yaşıyor Yoksa Mutasyon'mu Geçiriyor |
|
|
|
|
|
#2 (permalink) |
|
Üyelik Tarihi: 14.02.2002
Yer: bilmiyorum
Yaş: 28
Mesaj: 415
|
|
|
|
|
|
|
#3 (permalink) |
|
Üyelik Tarihi: 18.04.2002
Yer: İstanbul
Yaş: 26
Mesaj: 8
|
Cevabın İçin Saol Ama
Ben Oradaki Status Barı Taşımak İstemiyorum Sadece Sayfayla Eş Zamanlı Çalışan Bir Preloading Scripti İstiyorum Process Bar 'lı ![]() Yani Sayfa Yüklenince Process Barda Sonuna Gelecek İstediğim Sadece Bu
__________________
Dünya - Yeni Bir Kaos'mu Yaşıyor Yoksa Mutasyon'mu Geçiriyor |
|
|
|
|
|
#7 (permalink) |
|
Explorer'deki progress barı alıp oraya yerleştirmen mümkün değil. Ancak kendi istediğin tasarımda progress bar (önyükleme/preloader) kullanman mümkün.
Kod:
<HTML> <head> <title>Preload image Page</title> <script language="JavaScript1.1"> <!-- begin hiding /* Preload image With Update Bar script (By Marcin Wojtowicz [one_spook@Hotmail.com]) Submitted to and permission granted to Dynamicdrive.com to feature script in it's archive For full source code to this script and 100's more, visit http://dynamicdrive.com */ // You may modify the following: var locationAfterPreload = "http://dynamicdrive.com" // URL of the page after preload finishes var lengthOfPreloadBar = 150 // Length of preload bar (in pixels) var heightOfPreloadBar = 15 // Height of preload bar (in pixels) // Put the URLs of images that you want to preload below (as many as you want) var yourImages = new Array("http://www.yourdomain.com/test1.gif","http://www.yourdomain.com/test2.gif","http://www.yourdomain.com/test3.gif","http://www.yourdomain.com/test4.gif","http://www.yourdomain.com/test5.gif") // Do not modify anything beyond this point! if (document.images) { var dots = new Array() dots[0] = new image(1,1) dots[0].src = "black.gif" // default preloadbar color (note: You can substitute it with your image, but it has to be 1x1 size) dots[1] = new image(1,1) dots[1].src = "blue.gif" // color of bar as preloading progresses (same note as above) var preImages = new Array(),coverage = Math.floor(lengthOfPreloadBar/yourImages.length),currCount = 0 var loaded = new Array(),i,covered,timerID var leftOverWidth = lengthOfPreloadBar%coverage } function loadImages() { for (i = 0; i < yourImages.length; i++) { preImages[i] = new image() preImages[i].src = yourImages[i] } for (i = 0; i < preImages.length; i++) { loaded[i] = false } checkLoad() } function checkLoad() { if (currCount == preImages.length) { location.replace(locationAfterPreload) return } for (i = 0; i <= preImages.length; i++) { if (loaded[i] == false && preImages[i].complete) { loaded[i] = true eval("document.img" + currCount + ".src=dots[1].src") currCount++ } } timerID = setTimeout("checkLoad()",10) } // end hiding --> </script> </head> <body bgcolor="#FFFFFF"> <center> <font size="4">Please be patient while some images<br> are being preloaded...</font><p> 0% <script language="JavaScript1.1"> <!-- begin hiding // It is recommended that you put a link to the target URL just in case if the visitor wants to skip preloading // for some reason, or his browser doesn't support JavaScript image object. if (document.images) { var preloadBar = '' for (i = 0; i < yourImages.length-1; i++) { preloadBar += '<img src="' + dots[0].src + '" width="' + coverage + '" height="' + heightOfPreloadBar + '" name="img' + i + '" align="absmiddle">' } preloadBar += '<img src="' + dots[0].src + '" width="' + (leftOverWidth+coverage) + '" height="' + heightOfPreloadBar + '" name="img' + (yourImages.length-1) + '" align="absmiddle">' document.write(preloadBar) loadImages() } document.write('<p><small><a href="java script:window.location=locationAfterPreload">Skip Preloading</a> | <a href="http://dynamicdrive.com/">script Credits</a></small></p>') // end hiding --> </script> </center> </body> </HTML> Kolay gelsin. |
|
|
|
|
|
|
#9 (permalink) |
|
Üyelik Tarihi: 18.04.2002
Yer: İstanbul
Yaş: 26
Mesaj: 8
|
Arkadaşlar Lütfen Yardım Edin
Bana Progress Barlı Resim Belirtilmeyen Yani Javaya Resim Belirtilmeyen Bir Progress Bar Lazım Kendisi Resimleri bilecek Böyle Bir Bar Lazım ?
__________________
Dünya - Yeni Bir Kaos'mu Yaşıyor Yoksa Mutasyon'mu Geçiriyor |
|
|
|
Zoque'a hoşgeldiniz!