Forum'da ara:
Ara


Yazar Mesaj
Mesaj20.06.2008, 23:17 (UTC)    
Mesaj konusu:

Hareketli Buton

Kod:
<SCRIPT LANGUAGE="JavaScript">
            <!--
            var timerID = null
            var timerRunning = false
            var charNo = 0
            var charMax = 0
            var lineNo = 0
            var lineMax = 2 // number of URL's you will use
            var lineArr = new Array(lineMax)
            var urlArr = new Array(lineMax)
            lineArr[1] = "Soft Lite"
            urlArr[1] = "http://www.kimim.com/ps/"
            lineArr[2] = "Soft Lite Mail"
            urlArr[2] = "http://kimim.com"
            var lineText = lineArr[1]
            function StartShow() {
            StopShow()
            ShowLine()
            timerRunning = true
            }
            function FillSpaces() {
            for (var i = 1; i <= lineWidth; i++) {
            spaces += " "
            }
            }
            function StopShow() {
            if (timerRunning) {
            clearTimeout(timerID)
            timerRunning = false
            }
            }
            function ShowLine() {
            if (charNo == 0) { // Next line
            if (lineNo < lineMax) {
            lineNo++
            }
            else {
            lineNo = 1
            }
            lineText = lineArr[lineNo]
            charMax = lineText.length
            }
            if (charNo <= charMax) { // Next char
            document.formDisplay.buttonFace.value = lineText.substring(0, charNo)
            charNo++
            timerID = setTimeout("ShowLine()", 100)
            }
            else {
            charNo = 0
            timerID = setTimeout("ShowLine()", 3000)
            }
            }
            function GotoUrl(url)
            {
            top.location.href = url
            }
            //-->
            </SCRIPT>
            </HEAD>
            <BODY>
            <SCRIPT LANGUAGE="JavaScript">
            <!--
            document.write("<FORM NAME="formDisplay">");
            document.write("<INPUT TYPE="BUTTON" NAME="buttonFace" VALUE="&{lineText}" SIZE="18" onClick="GotoUrl(urlArr[lineNo])">");
            document.write("</FORM>");
            StartShow();
            //-->
            </SCRIPT>
Mesaj20.06.2008, 23:17 (UTC)    
Mesaj konusu:

Hareketli Yazı

Kod:
<script LANGUAGE="JavaScript" FPTYPE="dynamicanimation">
            <!--
            // If you want to change this script, you must also make the following
            // changes so that FrontPage will not overwrite your new script.
            // In the script tag, change type="dynamicanimation" to type="mydynamicanimation"
            // In the first script statement, change "dynamicanimation" to "mydynamicanimation"
            // Throughout the HTML content, change dynamicanimation= to mydynamicanimation=
            // Change function dynAnimation to function mydynAnimation
            // In the body tag, change onload="dynAnimation()" to onload="mydynAnimation()"
            dynamicanimAttr = "dynamicanimation"
            animateElements = new Array()
            currentElement = 0
            speed = 0
            stepsZoom = 8
            stepsWord = 8
            stepsFly = 12
            stepsSpiral = 16
            steps = stepsZoom
            step = 0
            outString = ""
            function dynAnimation()
            {
            var ms = navigator.appVersion.indexOf("MSIE")
            ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4)
            if(!ie4)
            {
            if((navigator.appName == "Netscape") &&
            (parseInt(navigator.appVersion.substring(0, 1)) >= 4))
            {
            for (index=document.layers.length-1; index >= 0; index--)
            {
            layer=document.layers[index]
            if (layer.left==10000)
            layer.left=0
            }
            }
            return
            }
            for (index=document.all.length-1; index >= document.body.sourceIndex; index--)
            {
            el = document.all[index]
            animation = el.getAttribute(dynamicanimAttr, false)
            if(null != animation)
            {
            if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
            {
            ih = el.innerHTML
            outString = ""
            i1 = 0
            iend = ih.length
            while(true)
            {
            i2 = startWord(ih, i1)
            if(i2 == -1)
            i2 = iend
            outWord(ih, i1, i2, false, "")
            if(i2 == iend)
            break
            i1 = i2
            i2 = endWord(ih, i1)
            if(i2 == -1)
            i2 = iend
            outWord(ih, i1, i2, true, animation)
            if(i2 == iend)
            break
            i1 = i2
            }
            document.all[index].innerHTML = outString
            document.all[index].style.posLeft = 0
            document.all[index].setAttribute(dynamicanimAttr, null)
            }
            if(animation == "zoomIn" || animation == "zoomOut")
            {
            ih = el.innerHTML
            outString = "<SPAN " + dynamicanimAttr + "="" + animation + "" style="position: relative; left: 10000;">"
            outString += ih
            outString += "</SPAN>"
            document.all[index].innerHTML = outString
            document.all[index].style.posLeft = 0
            document.all[index].setAttribute(dynamicanimAttr, null)
            }
            }
            }
            i = 0
            for (index=document.body.sourceIndex; index < document.all.length; index++)
            {
            el = document.all[index]
            animation = el.getAttribute(dynamicanimAttr, false)
            if (null != animation)
            {
            if(animation == "flyLeft")
            {
            el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
            el.style.posTop = 0
            }
            else if(animation == "flyRight")
            {
            el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
            el.style.posTop = 0
            }
            else if(animation == "flyTop" || animation == "dropWord")
            {
            el.style.posLeft = 0
            el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
            }
            else if(animation == "flyBottom")
            {
            el.style.posLeft = 0
            el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
            }
            else if(animation == "flyTopLeft")
            {
            el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
            el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
            }
            else if(animation == "flyTopRight" || animation == "flyTopRightWord")
            {
            el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
            el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
            }
            else if(animation == "flyBottomLeft")
            {
            el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
            el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
            }
            else if(animation == "flyBottomRight" || animation == "flyBottomRightWord")
            {
            el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
            el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
            }
            else if(animation == "spiral")
            {
            el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
            el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
            }
            else if(animation == "zoomIn")
            {
            el.style.posLeft = 10000
            el.style.posTop = 0
            }
            else if(animation == "zoomOut")
            {
            el.style.posLeft = 10000
            el.style.posTop = 0
            }
            else
            {
            el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
            el.style.posTop = 0
            }
            el.initLeft = el.style.posLeft
            el.initTop = el.style.posTop
            animateElements[i++] = el
            }
            }
            window.setTimeout("animate();", speed)
            }
            function offsetLeft(el)
            {
            x = el.offsetLeft
            for (e = el.offsetParent; e; e = e.offsetParent)
            x += e.offsetLeft;
            return x
            }
            function offsetTop(el)
            {
            y = el.offsetTop
            for (e = el.offsetParent; e; e = e.offsetParent)
            y += e.offsetTop;
            return y
            }
            function startWord(ih, i)
            {
            for(tag = false; i < ih.length; i++)
            {
            c = ih.charAt(i)
            if(c == '<')
            tag = true
            if(!tag)
            return i
            if(c == '>')
            tag = false
            }
            return -1
            }
            function endWord(ih, i)
            {
            nonSpace = false
            space = false
            while(i < ih.length)
            {
            c = ih.charAt(i)
            if(c != ' ')
            nonSpace = true
            if(nonSpace && c == ' ')
            space = true
            if(c == '<')
            return i
            if(space && c != ' ')
            return i
            i++
            }
            return -1
            }
            function outWord(ih, i1, i2, dyn, anim)
            {
            if(dyn)
            outString += "<SPAN " + dynamicanimAttr + "="" + anim + "" style="position: relative; left: 10000;">"
            outString += ih.substring(i1, i2)
            if(dyn)
            outString += "</SPAN>"
            }
            function animate()
            {
            el = animateElements[currentElement]
            animation = el.getAttribute(dynamicanimAttr, false)
            step++
            if(animation == "spiral")
            {
            steps = stepsSpiral
            v = step/steps
            rf = 1.0 - v
            t = v * 2.0*Math.PI
            rx = Math.max(Math.abs(el.initLeft), 200)
            ry = Math.max(Math.abs(el.initTop), 200)
            el.style.posLeft = Math.ceil(-rf*Math.cos(t)*rx)
            el.style.posTop = Math.ceil(-rf*Math.sin(t)*ry)
            }
            else if(animation == "zoomIn")
            {
            steps = stepsZoom
            el.style.fontSize = Math.ceil(50+50*step/steps) + "%"
            el.style.posLeft = 0
            }
            else if(animation == "zoomOut")
            {
            steps = stepsZoom
            el.style.fontSize = Math.ceil(100+200*(steps-step)/steps) + "%"
            el.style.posLeft = 0
            }
            else
            {
            steps = stepsFly
            if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
            steps = stepsWord
            dl = el.initLeft / steps
            dt = el.initTop / steps
            el.style.posLeft = el.style.posLeft - dl
            el.style.posTop = el.style.posTop - dt
            }
            if (step >= steps)
            {
            el.style.posLeft = 0
            el.style.posTop = 0
            currentElement++
            step = 0
            }
            if(currentElement < animateElements.length)
            window.setTimeout("animate();", speed)
            }
            //-->
            </script></head>
            <body topmargin="0" leftmargin="0" onload="dynAnimation()">
            <p dynamicanimation="flyBottom"
            style="position: relative !important; left: 10000 !important"><font face="Verdana,Arial"
            color="#0000A0"><strong><big><big><big>ScriptWorx</big></big></big></strong></font></p>
            <p dynamicanimation="flyTop" style="position: relative !important; left: 10000 !important"><font
            face="Verdana,Arial" size="2" color="#0000FF"><strong><em>Coding Your Way</em></strong></font></p>
Mesaj20.06.2008, 23:17 (UTC)    
Mesaj konusu:

Hesap Makinesi

Kod:
<SCRIPT LANGUAGE="JAVASCRIPT">
            <!--
            function Oblicz(Objec) {
            Objec.domesum.value = eval(Objec.expr.value)
            }
            //-->
            </SCRIPT>
            </HEAD>
            <BODY>
            <form name="Calculator">
            <pre>
            Sum:
            <BR><input type="text" name="expr" size="20">
            End Product:
            <input type="text" name="domesum" size="20">
            <input type="button" name="B1"
            value=" Calculate "
            onClick="Oblicz(this.form)"
            </pre>
            </form>
Mesaj20.06.2008, 23:18 (UTC)    
Mesaj konusu:

Deprem Scripti

Kod:
<HTML>
            <HEAD>
            <TITLE>Screenquake</TITLE>
            <META name="Generator" content="Soft Lite ScriptWorx 4.0">
            <script language="JavaScript">
            <!--
            function shake(shakes, vibration) {
            for (i = shakes; i > 0; i--) {
            self.moveBy(i, vibration);
            self.moveBy(-i, -vibration);
            }
            }
            //-->
            </script>
            </HEAD>
            <BODY topmargin="0" leftmargin="0" link="#0000FF" vlink="#800080" alink="#FF0000"
            onLoad="shake('10','10')">
            <!-- This requires Internet Explorer 4.0 and above //-->
            <!-- The first '10' is the number of shakes
            the second is the number of vibrations.
            Simply attach the script function onto an
            event from the 'events' list
            //-->
            </BODY>
            </HTML>
           
Mesaj20.06.2008, 23:18 (UTC)    
Mesaj konusu:

Hareketli Menü

Kod:
<HTML>
            <HEAD>
            <TITLE>Insert Your Title</TITLE>
            <META name="Generator" content="Soft Lite ScriptWorx 4.0">
            <style>
            <!--
            #slidemenubar, #slidemenubar2{
            position:absolute;
            left:-155px;
            width:160px;
            top:170px;
            border:1.5px solid navy;
            background-color:lightblue;
            layer-background-color:lightblue;
            font:bold 12px Verdana;
            line-height:20px;
            }
            -->
            </style>
            </HEAD>
            <BODY topmargin="0" leftmargin="0" link="#0000FF" vlink="#800080" alink="#FF0000">
            <!-- Type your text here //-->
            <script language="JavaScript1.2">
            /*
            Sliding Menu Bar Script-
            © Dynamic Drive (www.dynamicdrive.com)
            For full source code, installation instructions,
            100's more DHTML scripts, and Terms Of
            Use, visit dynamicdrive.com
            */
            if (document.all)
            document.write('<div id="slidemenubar2" style="left:-150" onMouseover="pull()" onMouseout="draw()">')
            </script>
            <layer id="slidemenubar" onMouseover="pull()" onMouseout="draw()">
            <script language="JavaScript1.2">
            var sitems=new Array()
            var sitemlinks=new Array()
            //extend or shorten this list
            sitems[0]="Home"
            sitems[1]="Take our survey!"
            sitems[2]="Menus And Navigation"
            sitems[3]="Document Effects"
            sitems[4]="Scrollers"
            sitems[5]="Image Effects"
            sitems[6]="Links And Buttons"
            sitems[7]="Dynamic Clocks & Dates"
            sitems[8]="Text Animations"
            sitems[9]="Browser Window"
            sitems[10]="User System Information"
            sitems[11]="Cascading Style Sheets"
            sitems[12]="Other"
            //These are the links pertaining to the above text.
            sitemlinks[0]="../test.htm"
            sitemlinks[1]=".."
            sitemlinks[2]="../dynamicindex1/index.html"
            sitemlinks[3]="../dynamicindex3/index.html"
            sitemlinks[4]="../dynamicindex2/index.html"
            sitemlinks[5]="../dynamicindex4/index.html"
            sitemlinks[6]="../dynamicindex5/index.html"
            sitemlinks[7]="../dynamicindex6/index.html"
            sitemlinks[8]="../dynamicindex10/index.html"
            sitemlinks[9]="../dynamicindex8/index.html"
            sitemlinks[10]="../dynamicindex9/index.html"
            sitemlinks[11]="../dynamicindex7/index.html"
            sitemlinks[12]="../dynamicindex11/index.html"
            for (i=0;i<=sitems.length-1;i++)
            document.write('<a href='+sitemlinks[i]+'>'+sitems[i]+'</a><br>')
            </script>
            </layer>
            <script language="JavaScript1.2">
            function regenerate(){
            window.location.reload()
            }
            function regenerate2(){
            if (document.layers)
            setTimeout("window.onresize=regenerate",400)
            }
            window.onload=regenerate2
            if (document.all){
            document.write('</div>')
            themenu=document.all.slidemenubar2.style
            rightboundary=0
            leftboundary=-150
            }
            else{
            themenu=document.layers.slidemenubar
            rightboundary=150
            leftboundary=10
            }
            function pull(){
            if (window.drawit)
            clearInterval(drawit)
            pullit=setInterval("pullengine()",50)
            }
            function draw(){
            clearInterval(pullit)
            drawit=setInterval("drawengine()",50)
            }
            function pullengine(){
            if (document.all&&themenu.pixelLeft<rightboundary)
            themenu.pixelLeft+=5
            else if(document.layers&&themenu.left<rightboundary)
            themenu.left+=5
            else if (window.pullit)
            clearInterval(pullit)
            }
            function drawengine(){
            if (document.all&&themenu.pixelLeft>leftboundary)
            themenu.pixelLeft-=5
            else if(document.layers&&themenu.left>leftboundary)
            themenu.left-=5
            else if (window.drawit)
            clearInterval(drawit)
            }
            </script>
            </BODY>
            </HTML>
           
Mesaj20.06.2008, 23:18 (UTC)    
Mesaj konusu:

Renk Değiştiren Text

Kod:
<HTML>
            <HEAD>
            <TITLE>Insert Your Title</TITLE>
            <META name="Generator" content="Soft Lite ScriptWorx 3.0">
            </HEAD>
            <BODY topmargin="0" leftmargin="0" link="#0000FF" vlink="#800080" alink="#FF0000">
            <!-- Type your text here //-->
            <SCRIPT LANGUAGE="JavaScript">
            <!--
            //enter the message you wish to be shown, including html tags
            var message='<b><font color=000000 size=5>www.kimim.com</font></b>'
            //enter a color name to be used as the background color of the message
            var backgroundcolor="yellow"
            //enter 0 for always display, 1 for a set period, 2 for random display mode
            var displaymode=0
            //if displaymode is set to display for a set period, enter the period below (1000=1 sec)
            var displayduration=10000
            //enter 0 for non-flashing message, 1 for flashing
            var flashmode=1
            //if above is set to flashing, enter the flash-to color below
            var flashtocolor="lightgreen"
            function regenerate(){
            window.location.reload()
            }
            var which=0
            function regenerate2(){
            if (document.layers)
            setTimeout("window.onresize=regenerate",400)
            }
            function display2(){
            if (document.layers){
            if (topmsg.visibility=="show")
            topmsg.visibility="hide"
            else
            topmsg.visibility="show"
            }
            else if (document.all){
            if (topmsg.style.visibility=="visible")
            topmsg.style.visibility="hidden"
            else
            topmsg.style.visibility="visible"
            setTimeout("display2()",Math.round(Math.random()*10000)+10000)
            }
            }
            function flash(){
            if (which==0){
            if (document.layers)
            topmsg.bgColor=flashtocolor
            else
            topmsg.style.backgroundColor=flashtocolor
            which=1
            }
            else{
            if (document.layers)
            topmsg.bgColor=backgroundcolor
            else
            topmsg.style.backgroundColor=backgroundcolor
            which=0
            }
            }
            if (document.all){
            document.write('<span id="topmsg" style="position:absolute;visibility:hidden">'+message+'</span>')
            }
            function logoit(){
            document.all.topmsg.style.left=document.body.scrollLeft+document.body.clientWidth/2-document.all.topmsg.offsetWidth/2
            document.all.topmsg.style.top=document.body.scrollTop+document.body.clientHeight-document.all.topmsg.offsetHeight-4
            }
            function logoit2(){
            topmsg.left=pageXOffset+window.innerWidth/2-topmsg.document.width/2
            topmsg.top=pageYOffset+window.innerHeight-topmsg.document.height-5
            setTimeout("logoit2()",90)
            }
            function setmessage(){
            document.all.topmsg.style.left=document.body.scrollLeft+document.body.clientWidth/2-document.all.topmsg.offsetWidth/2
            document.all.topmsg.style.top=document.body.scrollTop+document.body.clientHeight-document.all.topmsg.offsetHeight-4
            document.all.topmsg.style.backgroundColor=backgroundcolor
            document.all.topmsg.style.visibility="visible"
            if (displaymode==1)
            setTimeout("topmsg.style.visibility='hidden'",displayduration)
            else if (displaymode==2)
            display2()
            if (flashmode==1)
            setInterval("flash()",1000)
            window.onscroll=logoit
            window.onresize=new Function("window.location.reload()")
            }
            function setmessage2(){
            topmsg=new Layer(window.innerWidth)
            topmsg.bgColor=backgroundcolor
            regenerate2()
            topmsg.document.write(message)
            topmsg.document.close()
            logoit2()
            topmsg.visibility="show"
            if (displaymode==1)
            setTimeout("topmsg.visibility='hide'",displayduration)
            else if (displaymode==2)
            display2()
            if (flashmode==1)
            setInterval("flash()",1000)
            }
            if (document.layers)
            window.onload=setmessage2
            else if (document.all)
            window.onload=setmessage
            //-->
            </SCRIPT>
            </BODY>
            </HTML>
           
Mesaj20.06.2008, 23:19 (UTC)    
Mesaj konusu:

Status Bar'da Değişen Yazılar

Kod:
<script language="JavaScript">
            <!--
            // please keep these lines on when you copy the source
            // made by: Nicolas - http://www.javascript-page.com
            var currentmsg = 0
            var MsgTime = 2000
            var MsgEndTime = 4000
            function initArray(n) {
            this.length = n;
            for (var i =1; i <= n; i++) {
            this[i] = ' '
            }
            }
            msg = new initArray(4)
            msg[0]="This is Message 1"
            msg[1]="Now it is Message 2"
            msg[2]="No, do not say I have to do 3 messages"
            msg[3]="Yeah, this message, 4, is the last"
            function msgrotator() {
            window.status = msg[currentmsg]
            if (currentmsg > msg.length - 1) {
            currentmsg = 0
            setTimeout("msgrotator()", MsgEndTime)
            }
            else {
            currentmsg = currentmsg + 1
            setTimeout("msgrotator()", MsgTime)
            }
            }
            msgrotator();
            //-->
            </script>
           
Mesaj20.06.2008, 23:19 (UTC)    
Mesaj konusu:

Ziyaretçiyi Selamlama

Kod:
<SCRIPT LANGUAGE="JavaScript">
            <!--
            function GetCookie(name) {
            var arg=name+"=";
            var alen=arg.length;
            var clen=document.cookie.length;
            var i=0;
            while (i<clen) {
            var j=i+alen;
            if
            (document.cookie.substring(i,j)==arg)
            return "here";
            i=document.cookie.indexOf(" ",i)+1;
            if (i==0) break;
            }
            return null;
            }
            var visit=GetCookie("shant");
            if (visit==null){
            alert("Hoşgeldiniz...");
            var expire=new Date();
            expire=new
            Date(expire.getTime()+7776000000);
            document.cookie="shant=here; expires="+expire;
            }
            // -->
            </SCRIPT>
Mesaj20.06.2008, 23:20 (UTC)    
Mesaj konusu:

Yönlendirme

Kod:
<SCRIPT LANGUAGE="JavaScript">
            //This Script is Copyright S Atamian© 2000
            //If you are going to use this code, you MUST leave these
            //lines of script UNEDITED!
            var shant="http://www.designlife.cjb.net"
            document.write('Please wait while you are forwarded to ' + shant)
            function forPage()
            {
            location.href=shant
            }
            setTimeout ("forPage()", 1000);
            </SCRIPT>
Mesaj20.06.2008, 23:20 (UTC)    
Mesaj konusu:

Çözünürlük Ayarı

Kod:
<script language="JavaScript">
            //This Script is Copyright S Atamian© 2000
            //If you are going to use this code, you MUST leave these
            //lines of script UNEDITED!
            if ((screen.width == 1024) && (screen.height == 768))
            {
            alert('Your resolution is set at the recommended size that is required for this page to be viewed correctly.')
            }
            else
            if ((screen.width == 800) && (screen.height == 600))
            {
            alert('Ekran çözünürlüğün 1024x768 olmalıydı!')
            }
            else
            if ((screen.width == 640) && (screen.height == 480))
            {
            alert('Your resolution is too low to view this page correctly, please change it!')
            }
            document.write('Ekran çözünürlüğün - ' + screen.width + ' x ' + screen.height)
            </script>
Mesaj20.06.2008, 23:20 (UTC)    
Mesaj konusu:

Buton Şeklinde Saat

Kod:
<SCRIPT LANGUAGE="JavaScript">
            <!-- Script by: Michael Tartaglia <stonedstan( at )hotmail.com> -->
            <!-- Web Site: http://www.geocities.com/SiliconValley/Horizon/5235 -->
            <!-- Begin
            day = new Date();
            miVisit = day.getTime();
            function clock() {
            dayTwo = new Date();
            hrNow = dayTwo.getHours();
            mnNow = dayTwo.getMinutes();
            scNow = dayTwo.getSeconds();
            miNow = dayTwo.getTime();
            if (hrNow == 0) {
            hour = 12;
            ap = " AM";
            } else if(hrNow <= 11) {
            ap = " AM";
            hour = hrNow;
            } else if(hrNow == 12) {
            ap = " PM";
            hour = 12;
            } else if (hrNow >= 13) {
            hour = (hrNow - 12);
            ap = " PM";
            }
            if (hrNow >= 13) {
            hour = hrNow - 12;
            }
            if (mnNow <= 9) {
            min = "0" + mnNow;
            }
            else (min = mnNow)
            if (scNow <= 9) {
            secs = "0" + scNow;
            } else {
            secs = scNow;
            }
            time = hour + ":" + min + ":" + secs + ap;
            document.form.button.value = time;
            self.status = time;
            setTimeout('clock()', 1000);
            }
            function timeInfo() {
            milliSince = miNow;
            milliNow = miNow - miVisit;
            secsVisit = Math.round(milliNow / 1000);
            minsVisit = Math.round((milliNow / 1000) / 60);
            alert("There have been " + milliSince + " milliseconds since midnight, January 1, 1970. "
            + "You have spent " + milliNow + " of those milliseconds on this page. "
            + ".... About " + minsVisit + " minutes, and "
            + secsVisit + " seconds.");
            }
            document.write("<form name="form">"
            + "<input type=button value="Click for info!""
            + " name=button onClick="timeInfo()"></form>");
            onError = null;
            clock();
            // End -->
            </SCRIPT>
Mesaj20.06.2008, 23:21 (UTC)    
Mesaj konusu:

Renk Linkleri

Kod:
<!-- START OF SCRIPT -->
            <!-- For more scripts visit http://www.netpedia.com -->
            <a hre</body></html>
Mesaj20.06.2008, 23:58 (UTC)    
Mesaj konusu:

direnç ölç

Kod:
<a
href="http://tr.pandela.org/file"
_fcksavedurl="http://tr.pandela.org/file"
_fcksavedurl="http://tr.pandela.org/file"
_fcksavedurl="http://tr.pandela.org/file"><h1>www.muratkod.tr.cx</h1></A>
<****** LANGUAGE="JavaScript"> <!-- var hex; ********
CalcRes(Form) { var d1s = Form.Digit1.selectedIndex; var d1 =
Form.Digit1.options[d1s].value; var d2s = Form.Digit2.selectedIndex;
var d2 = Form.Digit2.options[d2s].value; var d3s =
Form.Digit3.selectedIndex; var d3 = Form.Digit3.options[d3s].value; var
ms = Form.Multiplier.selectedIndex; var m =
Form.Multiplier.options[ms].value; var ts =
Form.Tolerance.selectedIndex; var t = Form.Tolerance.options[ts].value;
var tcs = Form.TC.selectedIndex; var tc = Form.TC.options[tcs].value;
if (d3 != "") var res = ((100 * d1) + (10 * d2) + (1 * d3)) * m; else
var res = ((10 * d1) + (1 * d2)) * m; if (res >= 1e6) { res /= 1e6;
res += " Mega ohm" } else if (res >= 1e3) { res /= 1e3; res += "
Kilo ohm" } else res += " Ohm"; res += ", " + t; if (tc != "") res +=
", " + tc; Form.Result.value = res; } // --> </******>
<style> <!-- div.Section1 {page:Section1;} -->
</style> </HEAD> <BODY TEXT="#000000" BGCOLOR="#FFFFFF"
LINK="#0000EE" VLINK="#600060" ALINK="#000088"
onLoad="CalcRes(document.Resistor)" style="text-align: center">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="552">
<TR><TD VALIGN=TOP> <FONT FACE="Arial,Helvetica">
</FONT> <FONT FACE="Tahoma" size="6" color="#000863"> <P
align="center" style="margin-top: 0; margin-bottom: 0">Direnç
Hesaplayıcı</P> </FONT> <FONT FACE="Tahoma" size="2">
</FONT> <FONT FACE="Arial,Helvetica">
<CENTER><FONT FACE="Tahoma"> <FORM ACTION=""
METHOD="POST" NAME="Resistor"> <div align="left"> <p
align="center"><b><font size="2" color="#FF0000">Direnç
üzerindeki toplam renk sayısına göre uygun kutucukları
seçiniz.</font></b></p> <table border="0"
width="92%" id="table3" cellspacing="0" cellpadding="0"> <tr>
<td width="15%" align="left"> <p style="margin-top: 0;
margin-bottom: 0"><b><font
size="2">1.band</font></b></td> <td width="15%"
align="left"> <p style="margin-top: 0; margin-bottom:
0"><b><font
size="2">2.band</font></b></td> <td width="15%"
align="left"> <p style="margin-top: 0; margin-bottom:
0"><b><font
size="2">3.band</font></b></td>
</FONT><FONT FACE="Arial,Helvetica"> <td width="17%"
align="left"> <p style="margin-top: 0; margin-bottom:
0"><b><FONT FACE="Tahoma" size="2">
Çarpan</FONT></b></td> <td align="left"
width="14%"> <p style="margin-top: 0; margin-bottom:
0"><b><FONT FACE="Tahoma" size="2">
Tolerans</FONT></b></td> <td width="16%"
align="left"> <p style="margin-top: 0; margin-bottom:
0"><b><FONT FACE="Tahoma" size="2"> Sıcaklık
Kat.</FONT></b></td> </tr> <tr> <td
width="15%"> <p style="margin-top: 0; margin-bottom:
0"><FONT FACE="Arial,Helvetica"><SMALL> <font
size="1" face="Tahoma"><SELECT NAME="Digit1" SIZE="1"
onChange="CalcRes(this.form)"><OPTION VALUE="0">
Siyah</OPTION><OPTION
VALUE="1">Kahverengi</OPTION><OPTION VALUE="2">
Kırmızı</OPTION><OPTION
VALUE="3">Turuncu</OPTION><OPTION VALUE="4">
Sarı</OPTION><OPTION
VALUE="5">Yeşil</OPTION><OPTION
VALUE="6">Mavi</OPTION><OPTION VALUE="7">
Mor</OPTION><OPTION VALUE="8">Gri</OPTION><OPTION
VALUE="9">Beyaz</OPTION></SELECT></font></SMALL></FONT></td>
<td width="15%"> <p style="margin-top: 0; margin-bottom:
0"><FONT FACE="Arial,Helvetica"><SMALL> <font
size="1"><SELECT NAME="Digit2" SIZE="1"
onChange="CalcRes(this.form)"><OPTION VALUE="0">
Siyah</OPTION><OPTION
VALUE="1">Kahverengi</OPTION><OPTION VALUE="2">
Kırmızı</OPTION><OPTION
VALUE="3">Turuncu</OPTION><OPTION VALUE="4">
Sarı</OPTION><OPTION
VALUE="5">Yeşil</OPTION><OPTION
VALUE="6">Mavi</OPTION><OPTION VALUE="7">
Mor</OPTION><OPTION VALUE="8">Gri</OPTION><OPTION
VALUE="9">Beyaz</OPTION></SELECT></font></SMALL></FONT></td>
<td width="15%"> <p style="margin-top: 0; margin-bottom:
0"><FONT FACE="Arial,Helvetica"><SMALL> <SELECT
NAME="Digit3" SIZE="1" onChange="CalcRes(this.form)"><OPTION>
Yok</OPTION><OPTION
VALUE="0">Siyah</OPTION><OPTION VALUE="1">
Kahverengi</OPTION><OPTION
VALUE="2">Kırmızı</OPTION><OPTION VALUE="3">
Turuncu</OPTION><OPTION
VALUE="4">Sarı</OPTION><OPTION VALUE="5">
Yeşil</OPTION><OPTION
VALUE="6">Mavi</OPTION><OPTION
VALUE="7">Mor</OPTION><OPTION VALUE="8">
Gri</OPTION><OPTION
VALUE="9">Beyaz</OPTION></SELECT></SMALL></FONT></td>
<td width="17%"> <p style="margin-top: 0; margin-bottom:
0"><FONT FACE="Arial,Helvetica"><SMALL> <SELECT
NAME="Multiplier" SIZE="1" onChange="CalcRes(this.form)"><OPTION
VALUE="1"> Siyah</OPTION><OPTION
VALUE="10">Kahverengi</OPTION><OPTION VALUE="100">
Kırmızı</OPTION><OPTION
VALUE="1000">Turuncu</OPTION><OPTION VALUE="10000">
Sarı</OPTION><OPTION
VALUE="100000">Yeşil</OPTION><OPTION VALUE="1000000">
Mavi</OPTION><OPTION
VALUE="10000000">Mor</OPTION><OPTION VALUE="0.1">
Altın</OPTION><OPTION
VALUE="0.01">Gümüş</OPTION></SELECT></SMALL></FONT></td>
<td width="14%"> <p style="margin-top: 0; margin-bottom:
0"><FONT FACE="Arial,Helvetica"><SMALL> <SELECT
NAME="Tolerance" SIZE="1" onChange="CalcRes(this.form)"><OPTION
VALUE="%20"> Yok</OPTION><OPTION
VALUE="%1">Kahverengi</OPTION><OPTION VALUE="%2">
Kırmızı</OPTION><OPTION
VALUE="%0.5">Yeşil</OPTION><OPTION VALUE="%0.25">
Mavi</OPTION><OPTION
VALUE="%0.1">Mor</OPTION><OPTION VALUE="%5">
Altın</OPTION><OPTION
VALUE="%10">Gümüş</OPTION></SELECT></SMALL></FONT></td>
<td width="16%"> <p style="margin-top: 0; margin-bottom:
0"><FONT FACE="Arial,Helvetica"><SMALL> <SELECT
NAME="TC" SIZE="1" onChange="CalcRes(this.form)"><OPTION>
Yok</OPTION><OPTION
VALUE="100ppm">Kahverengi</OPTION><OPTION
VALUE="50ppm">Kırmızı</OPTION><OPTION
VALUE="15ppm">Turuncu</OPTION><OPTION
VALUE="25ppm">Sarı</OPTION></SELECT></SMALL></FONT></td>
</tr> <tr> <td colspan="6"> <table border="2"
width="100%" id="table7" bordercolor="#0000FF"> <tr>
<td><FONT FACE="Arial,Helvetica"> <p style="margin-top:
0; margin-bottom: 0" align="center"> <font face="Tahoma"
size="2"><b>Direnç
Değeri:</b></font></FONT></FONT><b><FONT
FACE="Tahoma"> </FONT></b> <FONT
FACE="Arial,Helvetica"> <INPUT TYPE="text" SIZE="30"
NAME="Result"></td> </tr> </table> </td>
</tr> </table> </div> </FONT> </FONT>
<FONT FACE="Arial,Helvetica"> </FORM> </FONT>

______________


Mesaj20.06.2008, 23:58 (UTC)    
Mesaj konusu:

ideal meslek seç

Kod:
<HTML>
<HEAD> <TITLE>wwww.Cehre.net By IQ</TITLE> <style
type="text/css"> A:link { color: green; text-decoration: none }
A:active { color: green; text-decoration: none } A:visited { color:
green; text-decoration: none } A:hover { color: #999999;
text-decoration: none } EM { color: blue; font-weight: bold; } BODY {
background-color: white; } H1 { color: purple; } FONT { font-size:
11pt; } CODE { color: purple; font-size: 11pt;} ..emerald { font-size:
12pt; font-weight: bold; color: purple;} </style> <******
LANGUAGE="JavaScript"> fullName = new String; var x = 0; var
currentNum = 0; var currentChar; var y = 0; var ozName = new
Array("Tuvalet Temizlikçisi","Bitli Piyade","Kald?r?m Mühendisi","Geyik
Avc?s?","??portac?","??ba?lay?c?","Kamyon Soförü","??letici","Yumurta
Follukçusu","Bal?kç?","Falc?","Üçka??tç?","Kumarbaz","Düzenbaz","Rü?vetçi
Polis","Gardiyan","Çöpçü","Çöpçatan","Ormanc?","Tecavüzcü","Yönetici","H?rs?z","Ars?z","U?ursuz","?a
klaban","Boyac?","?ebek","Yosun
Avc?s?","Tuzukuru","Kurye","Hem?ire","Ayak
??çisi","Mamur","??çi","Jokey","Bakkal","Hipermarket
??leticisi","Kabz?mal","Hamal", "Röntgenci", "Uzman Çavu?", "Psikopat
Avc?s?", "Cad? Avc?s?", "Popçu", "Topçi", "Avukat", "Sinemda Yer
Gösterici", "Doktor", "Di?çi", "?mam", "Haham", "Peder", "BilgisayarM",
"Artist", "Rahibe", "Seyis", "Astronot", "Ç?mac?", "Antropolog",
"Vakainüvist", "Diktatör", "Soytar?", "??adam?", "??kad?n?", "Tiyatro
Sanatç?s?", "Devlet Bakan?", "Milletvekili", "Sekreter", "Camc?",
"Manikürcü", "Tur?ucu", "Araba H?rs?z?", "At H?rs?z?", "Fabrikatör",
"Bekçi", "Mühendiz", "Reklamc?", "Spiker", "DJ", "VJ", "Gasteci",
"?air", "Dublör", "Jonglör", "Banker", "Çorbac?", "Köçek", "Çoban",
"Marangoz", "Bilimadam?", "Bo? Gezenin Bo? Kalfas?","hal?c?") ********
matchLtr() { if (currentChar == "a" || currentChar == "A") { currentNum
= 1; } if (currentChar == "b" || currentChar == "B") { currentNum = 2;
} if (currentChar == "c" || currentChar == "C") { currentNum = 3; } if
(currentChar == "d" || currentChar == "D") { currentNum = 4; } if
(currentChar == "e" || currentChar == "E") { currentNum =5; } if
(currentChar == "f" || currentChar == "F") { currentNum = 6; } if
(currentChar == "g" || currentChar == "G") { currentNum = 7; } if
(currentChar == "h" || currentChar == "H") { currentNum = 8; } if
(currentChar == "i" || currentChar == "I") { currentNum = 9; } if
(currentChar == "j" || currentChar == "J") { currentNum = 10; } if
(currentChar == "k" || currentChar == "K") { currentNum = 11; } if
(currentChar == "l" || currentChar == "L") { currentNum = 12; } if
(currentChar == "m" || currentChar == "M") { currentNum = 13; } if
(currentChar == "n" || currentChar == "N") { currentNum = 14; } if
(currentChar == "o" || currentChar == "O") { currentNum = 15; } if
(currentChar == "p" || currentChar == "P") { currentNum = 16; } if
(currentChar == "q" || currentChar == "Q") { currentNum = 17; } if
(currentChar == "r" || currentChar == "R") { currentNum = 18; } if
(currentChar == "s" || currentChar == "S") { currentNum = 19; } if
(currentChar == "t" || currentChar == "T") { currentNum = 20; } if
(currentChar == "u" || currentChar == "U") { currentNum = 21; } if
(currentChar == "v" || currentChar == "V") { currentNum = 22; } if
(currentChar == "w" || currentChar == "W") { currentNum = 23; } if
(currentChar == "x" || currentChar == "X") { currentNum = 24; } if
(currentChar == "y" || currentChar == "Y") { currentNum = 25; } if
(currentChar == "z" || currentChar == "Z") { currentNum = 26; } x +=
currentNum; } ******** selName() { x = 0; fullName =
document.names.firstname.value + document.names.lastname.value; for
(i=0; i < fullName.length; i++) { currentChar = fullName.charAt(i);
matchLtr(); } popName() } ******** popName() { y = x % 90;
document.names.ozbitchname.value = ozName[y]; start(); } ********
start() { document.names.firstname.focus(); } </******>
</HEAD> <BODY onload=start()> <center><h1>?deal
Meslek Rehberiniz!</h1> <table style="width: 85%; border:
hidden; padding: 10px;"> <tr> <td> </td>
<td><P align="center"><font>Ad?n? ve Soyad?n? Yaz ve
?deal Mesle?ini Bul <div align="center"> <p> <form
name="names"> Ad?n?z : <input type="text" name="firstname"
size="22"> <br> Soyad?n?z: <input type="text"
name="lastname" size="22"> <p> <font color="#00FF00">
<input type="button" value="?deal Mesle?imi Bul!"
onclick="**********:selName()"> </font> </div>
</font> </td> </tr> </table> <p>?deal
Mesle?iniz: <font face="Arial TR" size="2"><b><input
type="text" name="ozbitchname" readonly size="26">
</b></font> </form> <p> </center> <p
align="center"> <font face="Arial Black"
color="#FF00FF"><span style="background-color: #FFFF00">
<marquee width="474" height="30">Yeni Mesle?iniz Hay?rl? U?urlu
Olsun www.Cehre.net By IQ </marquee> </span></font>
</BODY> </HTML>

______________




En son kerimdj tarafından 21.06.2008 00:00:34 tarihinde değiştirildi, toplam 1 kere değiştirildi
Mesaj21.06.2008, 00:08 (UTC)    
Mesaj konusu:

otomatik link açıcı

Kod:
<a href="" onmouseover="parent.location='http://www.djkresimli.tr.gg/'">Mouse imlecini, bu link üzerine getiriniz...</A>

______________


Önceki mesajları göster:   


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