Şimdi Ara

Yükleniyor ve Slaytshow beraber olmuyor. Yardım istiyorum..

Bu Konudaki Kullanıcılar:
1 Misafir - 1 Masaüstü
5 sn
4
Cevap
0
Favori
307
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • Arkadaşlar elimde Slaytshow scripti var. Çalışır durumda. Resimlerin tamamını yüklediği için 30-40 sn. açılış sürüyor. Resimler yüklenene kadar, yükleniyor sicriptinin çalışması. Kodlarımı aşağıda belirttim. Epey uğraştım fakat olmadı. Ya yukleniyor scripti çalışıyor yada slaytshow scripti, ikisini çalıştıramadım. <body Onload=..........." tagında bir şey var herhalde. Lütfen bir çözüm.

    1. Kod
    <html> 
    <head>
    <title>Slayt Gösterisi Tr</title>

    <style>
    .Caption {
    font-family: Arial;
    font-weight: normal;
    font-size: 12pt;
    color: #FF3300; }

    A.Controls:link { color:#666666;
    text-decoration:none;
    font-family: Arial;
    font-size: 14pt;
    font-weight: bold; }
    A.Controls:visited { color:#666666; text-decoration:none;
    font-family: Arial;
    font-size: 14pt;
    font-weight: bold; }
    A.Controls:active { color:#666666; text-decoration:none;
    font-family: Arial;
    font-size: 14pt;
    font-weight: bold; }
    A.Controls:hover { color:#00FF00; text-decoration:none;
    font-family: Arial;
    font-size: 14pt;
    font-weight: bold; }

    body {
    background-image: url();
    background-repeat: no-repeat;
    margin-left: 0px;
    margin-top: 0px;
    background-color: #000000;
    }
    .style4 {color: #000000}
    .style5 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    }
    .style6 {color: #FFFFFF; font-family: Arial, Helvetica, sans-serif; }
    a:link {
    text-decoration: none;
    }
    a:visited {
    text-decoration: none;
    }
    a:hover {
    text-decoration: underline;
    }
    a:active {
    text-decoration: none;
    }
    </style>

    <script>
    // (C) 2003 by CodeLifter.com
    // Free for all users, but leave in this header.

    // ==============================
    // Set the following variables...
    // ==============================

    // Set the slideshow speed (in milliseconds)
    var SlideShowSpeed = 3000;

    // Set the duration of crossfade (in seconds)
    var CrossFadeDuration = 2;

    var Picture = new Array(); // don't change this
    var Caption = new Array(); // don't change this
    var showHot = false; // don't change this

    // Specify the image files...
    // To add more images, just continue
    // the pattern, adding to the array below.
    // To use fewer images, remove lines
    // starting at the end of the Picture array.

    Picture[1] = 'images/01.jpg';
    Picture[2] = 'images/02.jpg';
    Picture[3] = 'images/03.jpg';
    Picture[4] = 'images/04.jpg';
    Picture[5] = 'images/05.jpg';
    Picture[6] = 'images/06.jpg';
    Picture[7] = 'images/07.jpg';
    Picture[8] = 'images/08.jpg';
    Picture[9] = 'images/09.jpg';
    Picture[10] = 'images/10.jpg';


    // =====================================
    // Do not edit anything below this line!
    // =====================================

    var tss;
    var iss;
    var jss = 0;
    var pss = Picture.length-1;

    var preLoad = new Array();
    for (iss = 1; iss < pss+1; iss++){
    preLoad[iss] = new Image();
    preLoad[iss].src = Picture[iss];}

    function control(how){
    if (showHot){
    if (how=="H") jss = 1;
    if (how=="F") jss = jss + 1;
    if (how=="B") jss = jss - 1;
    if (jss > (pss)) jss=1;
    if (jss < 1) jss = pss;
    if (document.all){
    document.images.PictureBox.style.filter="blendTrans(duration=2)";
    document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
    document.images.PictureBox.filters.blendTrans.Apply();}
    document.images.PictureBox.src = preLoad[jss].src;
    if (document.all) document.images.PictureBox.filters.blendTrans.Play();
    }}

    </script>

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9"></head>


    <!--
    Add onload='showHot=true;' to the body tag. This is
    needed to prevent false object calls while the page
    is loading. Optional: If you are using this in a
    popup, as in this demo, adding self.focus() to the
    onload event in the body tag will bring the popup
    to the front each time it is loaded [recommended].
    //-->

    <body onload='showHot=true;self.focus();' link="#FF0000" vlink="#FF0000" alink="#FF0000">

    <!--
    The following table holds the images, captions, and controls.
    Place the table in your page where you want the slideshow
    to appear. Follow the instructions for each table cell.
    //-->

    <div align="center">
    <center>
    <table border=1 cellpadding=1 cellspacing=1>
    <tr>
    <!--
    The next table cell holds the images.
    Set cell and image width and height the same.
    The img src must have name=PictureBox in its
    tag. Often, the first image in the Picture
    array in the script is used here; but you
    may also use a different, introductory image
    as we have here, since this image is shown
    only on start-up.
    //-->
    <td height=563 colspan="3">
    <img src=images/Kapak-Tr.jpg name=PictureBox width=750 height=563></td>
    </tr>
    <tr>
    <!--
    The next table cell holds the captions.
    This table cell must have id=CaptionBox and
    class=Caption in its tag. The default caption
    shows whilst loading in all browsers; NS4
    will show only the default caption, throughout.
    //-->
    </tr>
    <!--
    The following three cells contain the controls.
    Each of the control a href's must contain class=
    Controls, to attach the styles (see top of script).
    To dress this up a bit, you can of course substitute
    <img src> images for the text in the links.
    //-->
    <tr>
    <td width="750" align="center" background="images/bar.gif">
    <span class="style4"><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=11247295&url=#" class=Controls style2 onClick="javascript:control('B');" data-href="#" class=Controls style2 onClick="javascript:control('B');"><img src="images\previous.png" alt="Geri" width="28" height="28" border="0"></a>
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=11247295&url=#" class=Controls style2 onClick="javascript:control('H');" data-href="#" class=Controls style2 onClick="javascript:control('H');"><img src="images\home.png" alt="Başa Dön" width="28" height="28" border="0"></a>
    <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=11247295&url=#" class=Controls style2 onClick="javascript:control('F');" data-href="#" class=Controls style2 onClick="javascript:control('F');"><img src="images\next.png" alt="İleri" width="28" height="28" border="0"></a></span> </td>
    </tr>
    </table>
    </center>
    </div>
    <div align="center" class="style5"><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=11247295&url=index.php" class="style6" data-href="index.php" class="style6">Ana Sayfa</a></div>
    </body>
    </html>


    2. Kod
    <SCRIPT LANGUAGE="JavaScript"> 
    function sayfayukle() {
    if (document.layers) {
    document.yukleniyor.visibility = 'hidden';
    }
    else {
    document.all.yukleniyor.style.visibility = 'hidden';
    }
    }
    </script>

    <body onUnload="sayfayukle()">
    <img src="images/yukleniyor.gif" id="yukleniyor" style="position: absolute; left:40%; top:50%;">
    </body>







  • Buldum arkadaşlar. Kodu aşağıdaki gibi yapınca çalıştı.
    <body onLoad="showHot=true;self.focus(); sayfayukle()" link="#FF0000" vlink="#FF0000" alink="#FF0000">
  • 2. koddaki
    document.all.yukleniyor.style.visibility = 'hidden';
    Bu satır ile bu scriptin Opera ve İnternet Explorer'de çalışacaktır. Mozilla'da çalışmayacak. Bütün tarayıcılarada scriptin çalışsın istiyorsan bu satırı şu şekilde değiştir.
    document.getElementById('yukleniyor').style.visibility = 'hidden';
  • quote:

    Orjinalden alıntı: sanal47

    2. koddaki
    document.all.yukleniyor.style.visibility = 'hidden';
    Bu satır ile bu scriptin Opera ve İnternet Explorer'de çalışacaktır. Mozilla'da çalışmayacak. Bütün tarayıcılarada scriptin çalışsın istiyorsan bu satırı şu şekilde değiştir.
    document.getElementById('yukleniyor').style.visibility = 'hidden';


    Teşekkürler.
  • Yapay Zeka’dan İlgili Konular
    Daha Fazla Göster
    
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.