Forum'da ara:
Ara


Yazar Mesaj
Mesaj03.02.2009, 17:55 (UTC)    
Mesaj konusu: LÜTFEN BAKIN..!!!!!

ARKADAŞLAR BEN SİTEME LİNKİN ÜSTÜNE GELİNCE RENKLİ RENKLİ OLMASINI İSTİYORUM Bİ KAÇ SİTEDE BÖYLE İBŞİ GÖRDÜM. YARDIMCI OLURUSUNUZ.

MAUSE İLE BİR LİNK İN ÜSTÜNE GELİNCE O ÜSTÜNE GELDİGİNİZ LİNK RENKLİ RENKLİ YANIP SÖNECEK. YANİ RENKDEN RENGE GİRECEK BUNU Bİ KAÇ SİTEDE GÖRDÜM. MA ASİTELERİN İSİMLERİNİ UNUTTUM KODU BİLEN VARSA SÖLESİN VEYA SİTELERİNDE BU DEDİGİM OLAN VARSA O KODU VERSİNLER.
Mesaj03.02.2009, 17:59 (UTC)    
Mesaj konusu:

HADİİİ LÜTFEN YARDIM EDİN..
Mesaj03.02.2009, 18:37 (UTC)    
Mesaj konusu:

ok3 Bi dk veriyom rum kodları
______________
Sitemizde SİZİN DESTEGİNİZİ BEKLİYORUZ
Mesaj03.02.2009, 18:37 (UTC)    
Mesaj konusu:

ok
Mesaj03.02.2009, 18:39 (UTC)    
Mesaj konusu: say 1

1 Dk Lutfen vericem Hepsini
______________
Sitemizde SİZİN DESTEGİNİZİ BEKLİYORUZ
Mesaj03.02.2009, 18:40 (UTC)    
Mesaj konusu:

kodu tasarımın üstü altı varketmez sitenizde olsun yeter
Kod:
<SCRIPT LANGUAGE="JavaScript">

<script>
var rate = 20;  // Increase amount(The degree of the transmutation)

if (document.getElementById)
window.onerror=new Function("return true")

var objActive;  // The object which event occured in
var act = 0;    // Flag during the action
var elmH = 0;   // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg;     // A color before the change
var TimerID;    // Timer ID


if (document.all) {
    document.onmouseover = doRainbowAnchor;
    document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
    document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
    document.onmouseover = Mozilla_doRainbowAnchor;
    document.onmouseout = Mozilla_stopRainbowAnchor;
}

function doRainbow(obj)
{
    if (act == 0) {
        act = 1;
        if (obj)
            objActive = obj;
        else
            objActive = event.srcElement;
        clrOrg = objActive.style.color;
        TimerID = setInterval("ChangeColor()",100);
    }
}


function stopRainbow()
{
    if (act) {
        objActive.style.color = clrOrg;
        clearInterval(TimerID);
        act = 0;
    }
}

function doRainbowAnchor()
{
    if (act == 0) {
        var obj = event.srcElement;
        while (obj.tagName != 'A' && obj.tagName != 'BODY') {
            obj = obj.parentElement;
            if (obj.tagName == 'A' || obj.tagName == 'BODY')
                break;
        }

        if (obj.tagName == 'A' && obj.href != '') {
            objActive = obj;
            act = 1;
            clrOrg = objActive.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }
}


function stopRainbowAnchor()
{
    if (act) {
        if (objActive.tagName == 'A') {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }
}


function Mozilla_doRainbowAnchor(e)
{
    if (act == 0) {
        obj = e.target;
        while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
            obj = obj.parentNode;
            if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
                break;
        }

        if (obj.nodeName == 'A' && obj.href != '') {
            objActive = obj;
            act = 1;
            clrOrg = obj.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }
}


function Mozilla_stopRainbowAnchor(e)
{
    if (act) {
        if (objActive.nodeName == 'A') {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }
}

function ChangeColor()
{
    objActive.style.color = makeColor();
}


function makeColor()
{
    // Don't you think Color Gamut to look like Rainbow?

    // HSVtoRGB
    if (elmS == 0) {
        elmR = elmV;    elmG = elmV;    elmB = elmV;
    }
    else {
        t1 = elmV;
        t2 = (255 - elmS) * elmV / 255;
        t3 = elmH % 60;
        t3 = (t1 - t2) * t3 / 60;

        if (elmH < 60) {
            elmR = t1;  elmB = t2;  elmG = t2 + t3;
        }
        else if (elmH < 120) {
            elmG = t1;  elmB = t2;  elmR = t1 - t3;
        }
        else if (elmH < 180) {
            elmG = t1;  elmR = t2;  elmB = t2 + t3;
        }
        else if (elmH < 240) {
            elmB = t1;  elmR = t2;  elmG = t1 - t3;
        }
        else if (elmH < 300) {
            elmB = t1;  elmG = t2;  elmR = t2 + t3;
        }
        else if (elmH < 360) {
            elmR = t1;  elmG = t2;  elmB = t1 - t3;
        }
        else {
            elmR = 0;   elmG = 0;   elmB = 0;
        }
    }

    elmR = Math.floor(elmR).toString(16);
    elmG = Math.floor(elmG).toString(16);
    elmB = Math.floor(elmB).toString(16);
    if (elmR.length == 1)    elmR = "0" + elmR;
    if (elmG.length == 1)    elmG = "0" + elmG;
    if (elmB.length == 1)    elmB = "0" + elmB;

    elmH = elmH + rate;
    if (elmH >= 360)
        elmH = 0;

    return '#' + elmR + elmG + elmB;
}

</script>



</form>
     

______________
Atatürk diyorki ; Beni unutturmak isteyenler olabilir...

Takıldıgınız zor sorunlarmı var burdan çözümünü bulabilirsin tıkla
Mesaj03.02.2009, 18:46 (UTC)    
Mesaj konusu:

LİNK ÜSTÜNDE ÇİÇEKLER AÇSIN



Kod:
<style type="text/css">             a.navbar:hover{color:red; font-weight:bold;background-image:             url(http://www.jitans.kayyo.com/imlec/cicek.gif);}             a:hover, a.redlink:hover, a.navbar:hover {background-image:             url(http://www.jitans.kayyo.com/imlec/cicek.gif);             text-decoration:none; border:0px solid;}             a:hover img {background-image:url             (http://www.jitans.kayyo.com/imlec/cicek.gif);             filter:alpha(finishopacity=0, style=2); } </style>



LİNK ÜSTÜNDE LACİVERT YILDIZLAR YANI SÖNSÜN

Kod:
<style type="text/css">             a.navbar:hover{color:red; font-weight:bold;background-image:             url(http://www.jitans.kayyo.com/imlec/laciyildiz.gif);}             a:hover, a.redlink:hover, a.navbar:hover {background-image:             url(http://www.jitans.kayyo.com/imlec/laciyildiz.gif);             text-decoration:none; border:0px solid;}             a:hover img {background-image:url             (http://www.jitans.kayyo.com/imlec/laciyildiz.gif);             filter:alpha(finishopacity=0, style=2); } </style>



LİNK ÜSTÜNDE YANIP SÖNEN MAVİ YILDIZLAR

Kod:
<style type="text/css">             a.navbar:hover{color:red; font-weight:bold;background-image:             url(http://www.jitans.kayyo.com/imlec/maviyildiz.gif);}             a:hover, a.redlink:hover, a.navbar:hover {background-image:             url(http://www.jitans.kayyo.com/imlec/maviyildiz.gif);             text-decoration:none; border:0px solid;}             a:hover img {background-image:url             (http://www.jitans.kayyo.com/imlec/maviyildiz.gif);             filter:alpha(finishopacity=0, style=2); } </style>


LİNK ÜSTÜNDE YUVARLANAN RENKLİ TOPLAR

Kod:
<style type="text/css">             a.navbar:hover{color:red; font-weight:bold;background-image:             url(http://www.jitans.kayyo.com/imlec/toplar.gif);}             a:hover, a.redlink:hover, a.navbar:hover {background-image:             url(http://www.jitans.kayyo.com/imlec/toplar.gif);             text-decoration:none; border:0px solid;}             a:hover img {background-image:url             (http://www.jitans.kayyo.com/imlec/toplar.gif);             filter:alpha(finishopacity=0, style=2); } </style>


LİNK ÜSTÜNE GELİNDİĞİNDE KOMPLE ÇERÇEVE İÇİNDE YANIP SÖNEN RENKLİ BUTONA DÖNDÜREN EFEKT YEŞİL

Kod:
<style type="text/css">             a.navbar:hover{color:red; font-weight:bold;background-image:             url(http://www.jitans.kayyo.com/imlec/yesilisik.gif);}             a:hover, a.redlink:hover, a.navbar:hover {background-image:             url(http://www.jitans.kayyo.com/imlec/yesilisik.gif);             text-decoration:none; border:0px solid;}             a:hover img {background-image:url             (http://www.jitans.kayyo.com/imlec/yesilisik.gif);             filter:alpha(finishopacity=0, style=2); } </style>



LİNK ÜSTÜNE GELİNDİĞİNDE KOMPLE ÇERÇEVE İÇİNDE YANIP SÖNEN RENKLİ BUTONA DÖNDÜREN EFEKT BEYAZ



[code]<style type="text/css"> a.navbar:hover{color:red; font-weight:bold;background-image: url('yildirim.gif');} a:hover, a.redlink:hover, a.navbar:hover {background-image: url('yildirim.gif'); text-decoration:none; border:0px solid} a:hover img {background-image:url('url%20(http:/www.jitans.kayyo.com/imlec/yildirim.gif'); filter:alpha(finishopacity=0, style=2) } </style>[code]


LİNK ÜSTÜNDE YILDIZLAR ÇAKSIN

[/code]<style type="text/css"> a.navbar:hover{color:red; font-weight:bold;background-image: url(http://www.nackvision.com/myspace/links/twinklingstars2.gif);} a:hover, a.redlink:hover, a.navbar:hover {background-image: url(http://www.nackvision.com/myspace/links/twinklingstars2.gif); text-decoration:none; border:0px solid;} a:hover img {background-image:url (http://www.nackvision.com/myspace/links/twinklingstars2.gif); filter:alpha(finishopacity=0, style=2); } </style>[code]


LİNK ÜSTÜNDE KIRMIZI YILDIZLAR YANIP SÖNSÜN

[/code]<style type="text/css"> a.navbar:hover{color:red; font-weight:bold;background-image: url(http://www.jitans.kayyo.com/imlec/kirmiziyildiz.gif);} a:hover, a.redlink:hover, a.navbar:hover {background-image: url(http://www.jitans.kayyo.com/imlec/kirmiziyildiz.gif); text-decoration:none; border:0px solid;} a:hover img {background-image:url (http://www.jitans.kayyo.com/imlec/kirmiziyildiz.gif); filter:alpha(finishopacity=0, style=2); } </style>[code]



LİNK ÜSTÜNDE BALONLAR UÇSUN
[/code]<style type="text/css"> a.navbar:hover{color:red; font-weight:bold;background-image: url(URL: http://www.jitans.kayyo.com/imlec/baloncuk.gif);} a:hover, a.redlink:hover, a.navbar:hover {background-image: url(URL: http://www.jitans.kayyo.com/imlec/baloncuk.gif); text-decoration:none; border:0px solid;} a:hover img {background-image:url (URL: http://www.jitans.kayyo.com/imlec/yildirim.gif); filter:alpha(finishopacity=0, style=2); } </style>[code][/code]
______________
Sitemizde SİZİN DESTEGİNİZİ BEKLİYORUZ
Mesaj03.02.2009, 18:47 (UTC)    
Mesaj konusu:

Al kardes bunlar Bazılari
______________
Sitemizde SİZİN DESTEGİNİZİ BEKLİYORUZ
Mesaj03.02.2009, 18:49 (UTC)    
Mesaj konusu:

bu konuda bana yardım eden herkese cok tşk ediyorumm. Wink
Mesaj03.02.2009, 18:50 (UTC)    
Mesaj konusu:

Rica Ederim kardes Wink iyi Gunler
______________
Sitemizde SİZİN DESTEGİNİZİ BEKLİYORUZ
Mesaj03.02.2009, 19:04 (UTC)    
Mesaj konusu:

kefkir verdigin kod da bir yanlışlık olması lazım olmuyor.. Exclamation

Sad Sad Sad Sad Crying or Very sad Crying or Very sad Crying or Very sad
Mesaj03.02.2009, 19:31 (UTC)    
Mesaj konusu:

istedigim kodu buldum..

Kod:
Embed Kodu
04 Ekim 2008 13:54 | . | 0 yorum | etiket: 
<script>
var rate = 20;  // Increase amount(The degree of the transmutation)

if (document.getElementById)
window.onerror=new Function("return true")

var objActive;  // The object which event occured in
var act = 0;    // Flag during the action
var elmH = 0;   // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg;     // A color before the change
var TimerID;    // Timer ID


if (document.all) {
    document.onmouseover = doRainbowAnchor;
    document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
    document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
    document.onmouseover = Mozilla_doRainbowAnchor;
    document.onmouseout = Mozilla_stopRainbowAnchor;
}

function doRainbow(obj)
{
    if (act == 0) {
        act = 1;
        if (obj)
            objActive = obj;
        else
            objActive = event.srcElement;
        clrOrg = objActive.style.color;
        TimerID = setInterval("ChangeColor()",100);
    }
}


function stopRainbow()
{
    if (act) {
        objActive.style.color = clrOrg;
        clearInterval(TimerID);
        act = 0;
    }
}

function doRainbowAnchor()
{
    if (act == 0) {
        var obj = event.srcElement;
        while (obj.tagName != 'A' && obj.tagName != 'BODY') {
            obj = obj.parentElement;
            if (obj.tagName == 'A' || obj.tagName == 'BODY')
                break;
        }

        if (obj.tagName == 'A' && obj.href != '') {
            objActive = obj;
            act = 1;
            clrOrg = objActive.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }
}


function stopRainbowAnchor()
{
    if (act) {
        if (objActive.tagName == 'A') {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }
}


function Mozilla_doRainbowAnchor(e)
{
    if (act == 0) {
        obj = e.target;
        while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
            obj = obj.parentNode;
            if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
                break;
        }

        if (obj.nodeName == 'A' && obj.href != '') {
            objActive = obj;
            act = 1;
            clrOrg = obj.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }
}


function Mozilla_stopRainbowAnchor(e)
{
    if (act) {
        if (objActive.nodeName == 'A') {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }
}

function ChangeColor()
{
    objActive.style.color = makeColor();
}


function makeColor()
{
    // Don't you think Color Gamut to look like Rainbow?

    // HSVtoRGB
    if (elmS == 0) {
        elmR = elmV;    elmG = elmV;    elmB = elmV;
    }
    else {
        t1 = elmV;
        t2 = (255 - elmS) * elmV / 255;
        t3 = elmH % 60;
        t3 = (t1 - t2) * t3 / 60;

        if (elmH < 60) {
            elmR = t1;  elmB = t2;  elmG = t2 + t3;
        }
        else if (elmH < 120) {
            elmG = t1;  elmB = t2;  elmR = t1 - t3;
        }
        else if (elmH < 180) {
            elmG = t1;  elmR = t2;  elmB = t2 + t3;
        }
        else if (elmH < 240) {
            elmB = t1;  elmR = t2;  elmG = t1 - t3;
        }
        else if (elmH < 300) {
            elmB = t1;  elmG = t2;  elmR = t2 + t3;
        }
        else if (elmH < 360) {
            elmR = t1;  elmG = t2;  elmB = t1 - t3;
        }
        else {
            elmR = 0;   elmG = 0;   elmB = 0;
        }
    }

    elmR = Math.floor(elmR).toString(16);
    elmG = Math.floor(elmG).toString(16);
    elmB = Math.floor(elmB).toString(16);
    if (elmR.length == 1)    elmR = "0" + elmR;
    if (elmG.length == 1)    elmG = "0" + elmG;
    if (elmB.length == 1)    elmB = "0" + elmB;

    elmH = elmH + rate;
    if (elmH >= 360)
        elmH = 0;

    return '#' + elmR + elmG + elmB;
}

</script>
Mesaj03.02.2009, 19:39 (UTC)    
Mesaj konusu:

ok3 hayırlı olsun kardes
______________
Sitemizde SİZİN DESTEGİNİZİ BEKLİYORUZ
Önceki mesajları göster:   


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