Yetkinwebmaster | Web Design, Kodlar, Makaleler
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Status Bar'da Yazı

Aşağa gitmek

Status Bar'da Yazı Empty Status Bar'da Yazı

Mesaj tarafından admin C.tesi Nis. 04, 2009 2:17 pm

Kod:
<!-- START OF SCRIPT -->
            <!-- For more scripts visit http://www.erenet.net -->
            <SCRIPT LANGUAGE="JavaScript">
            <!--
            // Copyright (c) 1996-1997 Tomer Shiran. All rights reserved.
            // Permission given to use the script provided that this notice remains as is.
            // Additional scripts can be found at http://www.erenet.net
            // set speed of banner (pause in milliseconds between characters)
            var speed = 100 // decrease value to increase speed (must be positive)
            // set pause between completion of message and beginning of following message
            var pause = 1000 // increase value to increase pause
            // set initial values
            var timerID = null
            var bannerRunning = false
            // create global array
            var ar = new Array()
            // assign the strings to the array's elements
            ar[0] = "Buraya mesajınızı yazın"
            ar[1] = "Buraya 2. mesajınızı yazın."
            ar[2] = "Buraya 3. mesajınızı yazın."
            ar[3] = "Buraya 4. mesajınızı yazın."
            // set index of first message to be displayed first
            var currentMessage = 0
            // set index of last character to be displayed first
            var offset = 0
            // stop the banner if it is currently running
            function stopBanner() {
            // if banner is currently running
            if (bannerRunning)
            // stop the banner
            clearTimeout(timerID)
            // timer is now stopped
            bannerRunning = false
            }
            // start the banner
            function startBanner() {
            // make sure the banner is stopped
            stopBanner()
            // start the banner from the current position
            showBanner()
            }
            // type-in the current message
            function showBanner() {
            // assign current message to variable
            var text = ar[currentMessage]
            // if current message has not finished being displayed
            if (offset < text.length) {
            // if last character of current message is a space
            if (text.charAt(offset) == " ")
            // skip the current character
            offset++
            // assign the up-to-date to-be-displayed substring
            // second argument of method accepts index of last character plus one
            var partialMessage = text.substring(0, offset + 1)
            // display partial message in status bar
            window.status = partialMessage
            // increment index of last character to be displayed
            offset++ // IE sometimes has trouble with "++offset"
            // recursive call after specified time
            timerID = setTimeout("showBanner()", speed)
            // banner is running
            bannerRunning = true
            } else {
            // reset offset
            offset = 0
            // increment subscript (index) of current message
            currentMessage++
            // if subscript of current message is out of range
            if (currentMessage == ar.length)
            // wrap around (start from beginning)
            currentMessage = 0
            // recursive call after specified time
            timerID = setTimeout("showBanner()", pause)
            // banner is running
            bannerRunning = true
            }
            }
            // -->
            </SCRIPT>
            </HEAD>
            <BODY onLoad="startBanner()">
            </BODY>
            </HTML>
            <!-- END OF SCRIPT -->
admin
admin
Forummoderatör

Forummoderatör

Uyarı Yok
Cinsiyet : Erkek
Mesaj Sayısı : 467
Puan : 1475
Başarı Puanı : 1

https://yetkinwebmaster1.yetkin-forum.com

Sayfa başına dön Aşağa gitmek

Sayfa başına dön

- Similar topics

 
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz