Forum'da ara:
Ara


Yazar Mesaj
Mesaj26.02.2011, 19:58 (UTC)    
Mesaj konusu: Hareketli adres adı ???



Yukarda belirtiğim işaretteki adresi hareketli onun kodu varmı acaba varsa paylaşabilirmiyiz şimiden teşşekürler..
______________
Banneriniz 468x60 boyutlarını geçmemelidir.
@simerweb
Mesaj26.02.2011, 20:22 (UTC)    
Mesaj konusu:

bu kodu bilen yokmu arkadaşlar Confused Confused
______________
Banneriniz 468x60 boyutlarını geçmemelidir.
@simerweb
Mesaj26.02.2011, 20:37 (UTC)    
Mesaj konusu:

Kod:
<****** language="Java******">var speed = 10 var pause = 3000 var timerID = nullvar bannerRunning = falsevar ar = new Array()ar[0] = " ....::: [COLOR=#ff0000]EPARADİSE[/COLOR] :::...."ar[1] = " ....::: [COLOR=red]Hareketli Site ismi[/COLOR] :::...."ar[2] = " ....::: [COLOR=red]Deneme işlemi[/COLOR] :::...."ar[3] = " ....::: [COLOR=red]By Karamenco [/COLOR]:::...."var message = 0var state = ""clearState()function stopBanner() { // if banner is currently running if (bannerRunning) // stop the banner clearTimeout(timerID) // timer is now stopped timerRunning = false}// start the bannerfunction startBanner() { // make sure the banner is stopped stopBanner() // start the banner from the current position showBanner()}// assign state a string of "0" characters of the length of the current messagefunction clearState() { // initialize to empty string state = "" // create string of same length containing 0 digits for (var i = 0; i < ar[message].length; ++i) { state += "0" }}// display the current messagefunction showBanner() { // if the current message is done if (getString()) { // increment message message++ // if new message is out of range wrap around to first message if (ar.length <= message) message = 0 // new message is first displayed as empty string clearState() // display next character after pause milliseconds timerID = setTimeout("showBanner()", pause) } else { // initialize to empty string var str = "" // built string to be displayed (only character selected thus far are displayed) for (var j = 0; j < state.length; ++j) { str += (state.charAt(j) == "1") ? ar[message].charAt(j) : " " } document.title = str timerID = setTimeout("showBanner()", speed) }}function getString() { // set variable to true (it will stay true unless proven otherwise) var full = true // set variable to false if a free space is found in string (a not-displayed char) for (var j = 0; j < state.length; ++j) { // if character at index j of current message has not been placed in displayed string if (state.charAt(j) == 0) full = false } // return true immediately if no space found (avoid infinitive loop later) if (full) return true // search for random until free space found (braoken up via break statement) while (1) { // a random number (between 0 and state.length - 1 == message.length - 1) var num = getRandom(ar[message].length) // if free space found break infinitive loop if (state.charAt(num) == "0") break } // replace the 0 character with 1 character at place found state = state.substring(0, num) + "1" + state.substring(num + 1, state.length) // return false because the string was not full (free space was found) return false}function getRandom(max) { // create instance of current date var now = new Date() // create a random number (good generator) var num = now.getTime() * now.getSeconds() * Math.random() // cut random number to value between 0 and max - 1, inclusive return num % max}startBanner()// -->

dene bakalım
Mesaj26.02.2011, 20:46 (UTC)    
Mesaj konusu:

usta sağolda nere yapıştırcaz bunu Mr. Green
______________
Banneriniz 468x60 boyutlarını geçmemelidir.
@simerweb
Mesaj26.02.2011, 20:56 (UTC)    
Mesaj konusu:

t.üstüne yapıştırırsan bütünler sayfalarında çıkar dostum =)
Mesaj26.02.2011, 21:01 (UTC)    
Mesaj konusu:

tmm denerim dostum Very Happy
______________
Banneriniz 468x60 boyutlarını geçmemelidir.
@simerweb
Mesaj26.02.2011, 21:03 (UTC)    
Mesaj konusu:

denedim olmadı nedenki ? kod yazı gibi çıkıyor direk Neutral
______________
Banneriniz 468x60 boyutlarını geçmemelidir.
@simerweb
Mesaj26.02.2011, 21:22 (UTC)    
Mesaj konusu:

o zaman
Kod:
<SCRIPT LANGUAGE="JavaScript">
02.<!-- Original:  David Sosnowski (
03. <script language="JavaScript" type="text/javascript">
04. <!--
05. var prefix = 'mailto:';
06. var suffix = '';
07. var attribs = '';
08. var path = 'hr' + 'ef' + '=';
09. var addy11154 = 'support' + '@';
10. addy11154 = addy11154 + 'codebelly' + '.' + 'com';
11. document.write( '<a ' + path + '\'' + prefix + addy11154 + suffix + '\'' + attribs + '>' );
12. document.write( addy11154 );
13. document.write( '<\/a>' );
14. //-->
15. </script><a href="mailto:support( at )codebelly.com">support( at )codebelly.com</a><script language="JavaScript" type="text/javascript">
16. <!--
17. document.write( '<span style=\'display: none;\'>' );
18. //-->
19. </script><span style="display: none;">Bu e-Posta adresi istek dışı postalardan korunmaktadır, görüntülüyebilmek için JavaScript etkinleştirilmelidir
20. <script language="JavaScript" type="text/javascript">
21. <!--
22. document.write( '</' );
23. document.write( 'span>' );
24. //-->
25. </script></span>) -->
26.<!-- Begin
27.var message = new Array();
28.// Set your messages below -- follow the pattern.
29.// To add more messages, just add more elements to the array. message[0] = "The JavaScript Source"; message[1] = "Free JavaScripts"; message[2] = "JavaScript Forum"; message[3] = "Your Message Here"; message[4] = "Add as many messages as you want"; message[5] = "IE and NN6"; message[6] = "";
30.
31.// Set the number of repetitions (how many times the arrow
32.// cycle repeats with each message).
33.var reps = 2;
34.var speed = 200;  // Set the overall speed (larger number = slower action).
35.
36.// DO NOT EDIT BELOW THIS LINE.
37.var p = message.length;
38.var T = "";
39.var C = 0;
40.var mC = 0;
41.var s = 0;
42.var sT = null;
43.if (reps < 1) reps = 1;
44.function doTheThing() {
45.T = message[mC];
46.A();
47.}
48.function A() {
49.s++;
50.if (s > 8) { s = 1;}
51.// you can fiddle with the patterns here...
52.if (s == 1) { document.title = '||||||====||| '+T+' -----'; } if (s == 2) { document.title = '|||=|||===||| '+T+' -----'; } if (s == 3) { document.title = '|||==|||==||| '+T+' -----'; } if (s == 4) { document.title = '|||===|||=||| '+T+' -----'; } if (s == 5) { document.title = '|||====|||||| '+T+' -----'; } if (s == 6) { document.title = '|||===|||=||| '+T+' -----'; } if (s == 7) { document.title = '|||==|||==||| '+T+' -----'; } if (s == 8) { document.title = '|||=|||===||| '+T+' -----'; } if (C < (8 * reps)) { sT = setTimeout("A()", speed);
53.C++;
54.}
55.else {
56.C = 0;
57.s = 0;
58.mC++;
59.if(mC > p - 1) mC = 0;
60.sT = null;
61.doTheThing();
62. }
63.}
64.doTheThing();
65.//  End -->
66.</script>

bunu yeni buldum bi dene olmazsa google hareketli site başlığı diye tarattır
k.bakma sitemle ilgilendim için kodlar ı denemeden yazıyorm şansına artk =)
bu arada numaralı yerleri sil Wink
Mesaj26.02.2011, 21:46 (UTC)    
Mesaj konusu:

tmm sağol yarın denerim çıkmam lazım ..
______________
Banneriniz 468x60 boyutlarını geçmemelidir.
@simerweb
Mesaj27.02.2011, 09:31 (UTC)    
Mesaj konusu:

kodu buldum teşşekürler..
______________
Banneriniz 468x60 boyutlarını geçmemelidir.
@simerweb
Mesaj27.02.2011, 09:34 (UTC)    
Mesaj konusu:

Bu daha kısa galiba (nurçin özerden alıntıdır.!)

Kod:
<SCRIPT LANGUAGE='JavaScript'>

var default1 = "Nurcin-Ozer | ";
var text1 = "Nurcin-Ozer | Bir";
var text2 = "Nurcin-Ozer | Kişisel";
var text3 = "Nurcin-Ozer | Site";
var text4 = "Nurcin-Ozer | Nurçin Özer ";
var changeRate = 2000; // 1000 = 1 second
var messageNumber = 0;

function changeStatus() {
  if (messageNumber == 0) {
     window.status=default1;
     document.title=default1;
    }
  else if (messageNumber == 1) {
     window.status=text1;
     document.title=text1;
    }
  else if (messageNumber == 2) {
     window.status=text2;
     document.title=text2;
     }
  else if (messageNumber == 3) {
     window.status=text3;
     document.title=text3;
     }
  else if (messageNumber == 4) {
     window.status=text4;
     document.title=text4;
     messageNumber = 0;
     }

  messageNumber++;
  setTimeout("changeStatus();",changeRate);

}

changeStatus();

</SCRIPT>

______________


Mesaj27.02.2011, 09:37 (UTC)    
Mesaj konusu:

ben bulmuştum ama yinede sağol Wink
______________
Banneriniz 468x60 boyutlarını geçmemelidir.
@simerweb
Önceki mesajları göster:   


Powered by phpBB © 2001, 2005 phpBB Group
Türkçe Çeviri: phpBB Türkiye & Erdem Çorapçıoğlu