تبلیغات :
آکوستیک ، فوم شانه تخم مرغی، صداگیر ماینر ، یونولیت
دستگاه جوجه کشی حرفه ای
فروش آنلاین لباس کودک
خرید فالوور ایرانی
خرید فالوور اینستاگرام
خرید ممبر تلگرام

[ + افزودن آگهی متنی جدید ]




صفحه 5 از 27 اولاول 12345678915 ... آخرآخر
نمايش نتايج 41 به 50 از 264

نام تاپيک: اموزش كدهاي جاوا اسكريپ

  1. #41
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    شما در یاهو آنلاین هستید؟ سایز بزرگ
    ----------------------
    <a href="YOUR ID:sendim?YahooID">
    <img border="0" src="http://opi.yahoo.com/online?u=YOUR ID&m=g&t=2">
    </a>

  2. #42
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    (Title) یک ساعت دیجیتالی در نوار عنوان
    -----------------------
    <HEAD>

    <SCRIPT LANGUAGE="JavaScript">
    <!-- Original: Massimo Giari (motore@iol.it) -->


    <!-- Begin
    var clocktext, timeday;
    var pagetitle = document.title;
    function scroll() {
    today = new Date();
    sec = today.getSeconds();
    hr = today.getHours();
    min = today.getMinutes();
    // 12 Hour clock fix by Michael Mann (pres@manninc.com)
    if (hr < 12) { timeday = " AM"; }
    else { timeday = " PM"; }
    if (hr > 12) hr = hr - 12;
    if (hr <= 9) hr = "0" + hr;
    if (min <= 9) min = "0" + min;
    if (sec <= 9) sec = "0" + sec;
    var clocktext = " - " + hr + ":" + min + ":" + sec + timeday;
    clocktimer = setTimeout("scroll()", 1000);
    document.title = pagetitle + clocktext;
    }
    if (document.all) scroll();
    // End -->
    </script>
    <!-- END Script Size: 0.90 KB -->

  3. #43
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    یک تقویم جالب

    ---------------------
    <!-- ONE STEP TO INSTALL MONTHLY: DAY HIGHLIGHTED:

    1. Put the code into the BODY of your HTML document -->

    <!-- STEP ONE: Copy this code into the HEAD your HTML document -->

    <BODY>
    <CENTER>

    <SCRIPT LANGUAGE="JavaScript">

    <!--Total Java Scripts 99 - Next Step Software-->

    <!-- Begin
    monthnames = new Array(
    "January",
    "Februrary",
    "March",
    "April",
    "May",
    "June",
    "July",
    "August",
    "September",
    "October",
    "November",
    "Decemeber");
    var linkcount=0;
    function addlink(month, day, href) {
    var entry = new Array(3);
    entry[0] = month;
    entry[1] = day;
    entry[2] = href;
    this[linkcount++] = entry;
    }
    Array.prototype.addlink = addlink;
    linkdays = new Array();
    monthdays = new Array(12);
    monthdays[0]=31;
    monthdays[1]=28;
    monthdays[2]=31;
    monthdays[3]=30;
    monthdays[4]=31;
    monthdays[5]=30;
    monthdays[6]=31;
    monthdays[7]=31;
    monthdays[8]=30;
    monthdays[9]=31;
    monthdays[10]=30;
    monthdays[11]=31;
    todayDate=new Date();
    thisday=todayDate.getDay();
    thismonth=todayDate.getMonth();
    thisdate=todayDate.getDate();
    thisyear=todayDate.getYear();
    thisyear = thisyear % 100;
    thisyear = ((thisyear < 50) ? (2000 + thisyear) : (1900 + thisyear));
    if (((thisyear % 4 == 0)
    && !(thisyear % 100 == 0))
    ||(thisyear % 400 == 0)) monthdays[1]++;
    startspaces=thisdate;
    while (startspaces > 7) startspaces-=7;
    startspaces = thisday - startspaces + 1;
    if (startspaces < 0) startspaces+=7;
    document.write("<table border=2 bgcolor=white ");
    document.write("bordercolor=black><font color=black>");
    document.write("<tr><td colspan=7><center><strong>"
    + monthnames[thismonth] + " " + thisyear
    + "</strong></center></font></td></tr>");
    document.write("<tr>");
    document.write("<td align=center>Su</td>");
    document.write("<td align=center>M</td>");
    document.write("<td align=center>Tu</td>");
    document.write("<td align=center>W</td>");
    document.write("<td align=center>Th</td>");
    document.write("<td align=center>F</td>");
    document.write("<td align=center>Sa</td>");
    document.write("</tr>");
    document.write("<tr>");
    for (s=0;s<startspaces;s++) {
    document.write("<td> </td>");
    }
    count=1;
    while (count <= monthdays[thismonth]) {
    for (b = startspaces;b<7;b++) {
    linktrue=false;
    document.write("<td>");
    for (c=0;c<linkdays.length;c++) {
    if (linkdays[c] != null) {
    if ((linkdays[c][0]==thismonth + 1) && (linkdays[c][1]==count)) {
    document.write("<a href=\"" + linkdays[c][2] + "\">");
    linktrue=true;
    }
    }
    }
    if (count==thisdate) {
    document.write("<font color='FF0000'><strong>");
    }
    if (count <= monthdays[thismonth]) {
    document.write(count);
    }
    else {
    document.write(" ");
    }
    if (count==thisdate) {
    document.write("</strong></font>");
    }
    if (linktrue)
    document.write("</a>");
    document.write("</td>");
    count++;
    }
    document.write("</tr>");
    document.write("<tr>");
    startspaces=0;
    }
    document.write("</table></p>");
    // End -->
    </SCRIPT>
    </CENTER>

    <!-- Script Size: 2.98 KB --></body></html>

  4. #44
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    یک ساعت کامپیوتری بدون تاریخ در نوار وضعیت
    -------------------------
    <html>
    <script Language="JavaScript">
    var timerID = null;
    var timerRunning = false;

    function stopclock (){
    if(timerRunning)
    clearTimeout(timerID);
    timerRunning = false;
    }


    function showtime () {
    var now = new Date();
    var hours = now.getHours();
    var minutes = now.getMinutes();
    var seconds = now.getSeconds()
    var timeValue = "" + ((hours >12) ? hours -12 :hours)
    timeValue += ((minutes < 10) ? ":0" : ":") + minutes
    timeValue += ((seconds < 10) ? ":0" : ":") + seconds
    timeValue += (hours >= 12) ? " P.M." : " A.M."
    window.status = timeValue;
    timerID = setTimeout("showtime()",1000);
    timerRunning = true;
    }
    function startclock () {
    stopclock();
    showtime();
    }
    </script>
    </head>

    <body BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#FF0000" VLINK="#000080" ALINK="#000080"
    onLoad="startclock()">
    </body>
    </html>

  5. #45
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    ساعتی ساده با قابلیت نشان دادن مدت زمانی که کاربر در سایت یا وبلاگ شماست به این صورت که روی ساعت باید کلیک شود 1
    ------------------------------------
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <SCRIPT lang=JavaScript>
    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;
    setTimeout('clock()', 1000);
    }
    function timeInfo() {
    milliSince = miNow;
    milliNow = miNow - miVisit;
    secsVisit = Math.round(milliNow / 1000);
    minsVisit = Math.round((milliNow / 1000) / 60);
    alert(" الان عزيزم " + minsVisit + " دقيقه هست كه اينجايی خسته كه نشدی؟ "
    + secsVisit + "");
    }
    document.write("<form name=\"form\">"
    + "<input type=button style='cursor=help' style='border=blue' style='height=20' style='background=#000099' style='color=white' value=\"Click for info!\""
    + " name=button onClick=\"timeInfo()\"></form>");
    onError = null;
    clock();
    </SCRIPT></body>
    </html>
    </body>
    </html>

  6. #46
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    ساعتی ساده با قابلیت نشان دادن مدت زمانی که کاربر در سایت یا وبلاگ شماست به این صورت که روی ساعت باید کلیک شود(یکی دیگه)
    --------------------------
    <!-- ONE STEP TO INSTALL BUTTON TIME:

    1. Put the coding into the BODY of your HTML document -->

    <!-- STEP ONE: Add this code into the BODY of your HTML document -->

    <BODY>

    <SCRIPT LANGUAGE="JavaScript">

    <!-- Original: Michael Tartaglia <stonedstan@hotmail.com> -->
    <!-- Web Site: [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] -->

    <!--Total Java Scripts 99 - Next Step Software-->

    <!-- 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>

    <!-- Script Size: 1.72 KB -->
    </body>
    </html>

  7. #47
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    یک ساعت کامپیوتری ساده
    --------------------
    <SCRIPT

    LANGUAGE="JavaScript">

    var timerID = null;
    var timerRunning = false;

    function stopclock ()
    {
    if(timerRunning)
    clearTimeout(timerID);
    timerRunning = false;
    }

    function showtime ()
    {
    var now = new Date();
    var hours = now.getHours();
    var minutes = now.getMinutes();
    var seconds = now.getSeconds()

    var timeValue = "" + ((hours >12) ? hours -12 :hours)
    timeValue += ((minutes < 10) ? ":0" : ":") + minutes
    timeValue += ((seconds < 10) ? ":0" : ":") + seconds
    timeValue += (hours >= 12) ? " P.M." : " A.M."
    document.clock.face.value = timeValue;

    // you could replace the above with this
    // and have a clock on the status bar:
    // window.status = timeValue;

    timerID = setTimeout("showtime()",1000);
    timerRunning = true;
    }

    function startclock ()
    {
    // Make sure the clock is stopped
    stopclock();
    showtime();
    }

    </SCRIPT>

    <BODY onLoad="startclock(); timerONE=window.setTimeout" BGCOLOR="000080"

    TEXT="ffffff">

    <CENTER><form name="clock" onSubmit="0">
    <input type="text" name="face" size=13 value=""></CENTER>

  8. #48
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    ساعت و تاریخ در نوار وضعیت
    --------------------
    <HEAD>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Original: Francis Woodhouse (francis@contessa.u-net.com) -->
    <!-- Begin
    function runClock() {
    theTime = window.setTimeout("runClock()", 1000);
    var today = new Date();
    var display= today.toLocaleString();
    status=display;
    }
    // End -->
    </SCRIPT>
    <!-- CONTINUE -->
    <body onLoad="runClock()">
    <!-- END Script Size: 0.81 KB -->

  9. #49
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    ساعت عقربه دار ثابت
    ------------------------
    <HTML>
    <HEAD>

    <SCRIPT LANGUAGE="JavaScript">
    <!-- Original: Randy Bennett (rbennett@thezone.net) -->
    <!-- Web Site: [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] -->
    <!-- Edited by Mahdi Peivandi - JavaKadeh -->
    <!-- Begin
    pX = 100;
    pY = 100;
    obs = new Array(13);
    function ob() {
    for (i = 0; i < 13; i++) {
    if (document.all) obs[i] = new Array (eval('ob'+i).style,-100,-100);
    else obs[i] = new Array (eval('document.ob'+i),-100,-100);
    }
    }
    function cl(a, b, c) {
    if (document.all) {
    if (a != 0) b += -1;
    eval('c'+a+'.style.pixelTop='+(pY+(c)));
    eval('c'+a+'.style.pixelLeft='+(pX+(b)));
    }
    else {
    if (a != 0) b += 10;
    eval('document.c'+a+'.top='+(pY+(c)));
    eval('document.c'+a+'.left='+(pX+(b)));
    }
    }
    function runClock() {
    for (i = 0; i < 13; i++) {
    obs[i][0].left=obs[i][1]+pX;
    obs[i][0].top=obs[i][2]+pY;
    }
    }
    var lastsec;
    function timer() {
    time = new Date ();
    sec = time.getSeconds();
    if (sec != lastsec) {
    lastsec = sec;
    sec = Math.PI * sec / 30;
    min = Math.PI * time.getMinutes() / 30;
    hr = Math.PI * time.getHours() / 6 + Math.PI * parseInt(time.getMinutes()) / 360;
    for (i = 1; i < 6; i++) {
    obs[i][1] = Math.sin(sec) * (44 - (i-1) * 11) - 16;
    if (document.layers)obs[i][1] += 10;
    obs[i][2] = -Math.cos(sec) * (44 - (i-1) * 11) - 27;
    }
    for (i = 6;i < 10; i++) {
    obs[i][1] = Math.sin(min) * (40 - (i-6) * 10) - 16;
    if (document.layers)obs[i][1] += 10;
    obs[i][2] = -Math.cos(min) * (40 - (i-6) * 10) - 27;
    }
    for (i = 10; i < 13; i++) {
    obs[i][1] = Math.sin(hr) * (37 - (i-10) * 11) - 16;
    if (document.layers)obs[i][1] += 10;
    obs[i][2] = -Math.cos(hr) * (37 - (i-10) * 11) - 27;
    }
    }
    }
    function setNum() {
    cl (0, -67, -65);
    cl (1, 10, -51);
    cl (2, 28, -33);
    cl (3, 35, -8);
    cl (4, 28, 17);
    cl (5, 10, 35);
    cl (6, -15, 42);
    cl (7, -40, 35);
    cl (8, -58, 17);
    cl (9, -65, -8);
    cl (10, -58, -33);
    cl (11, -40, -51);
    cl (12, -16, -56);
    }
    function startClock() {
    ob();
    setNum();
    setInterval('timer()', 100);
    setInterval('runClock()', 100);
    }
    // End -->
    </script>
    <style>
    ..num {color:white;width:30px;text-align:center; }
    </style>
    </HEAD>

    <body onLoad="javascript:startClock();">

    <div id="c0" style="position:absolute;left:36;top:36; z-index:2;">
    <table>
    <tr>
    <td bgcolor=000000 width=120 height=120>
    </td>
    </tr>
    </table>
    </div>
    <div id="c1" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>1</b></div>
    <div id="c2" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>2</b></div>
    <div id="c3" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>3</b></div>
    <div id="c4" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>4</b></div>
    <div id="c5" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>5</b></div>
    <div id="c6" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>6</b></div>
    <div id="c7" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>7</b></div>
    <div id="c8" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>8</b></div>
    <div id="c9" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>9</b></div>
    <div id="c10" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>10</b></div>
    <div id="c11" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>11</b></div>
    <div id="c12" class="num" style="position:absolute;left:20;top:-20; z-index:5;font-size:11px;"><b>12</b></div>

    <div id="ob0" class="num" style="position:absolute;left:-20;top:-20;z-index:1">
    </div>
    <div id="ob1" class="num" style="position:absolute;left:-20;top:-20;z-index:8">
    <font size="+3" color="#0000ff"><b>.</b></font></div>
    <div id="ob2" class="num" style="position:absolute;left:-20;top:-20;z-index:8">
    <font size="+3" color="#0000ff"><b>.</b></font></div>
    <div id="ob3" class="num" style="position:absolute;left:-20;top:-20;z-index:8">
    <font size="+3" color="#0000ff"><b>.</b></font></div>
    <div id="ob4" class="num" style="position:absolute;left:-20;top:-20;z-index:8">
    <font size="+3" color="#0000ff"><b>.</b></font></div>
    <div id="ob5" class="num" style="position:absolute;left:-20;top:-20;z-index:8">
    <font size="+3" color="#0000ff"><b>.</b></font></div>
    <div id="ob6" class="num" style="position:absolute;left:-20;top:-20;z-index:7">
    <font size="+3" color="#00ffff"><b>.</b></font></div>
    <div id="ob7" class="num" style="position:absolute;left:-20;top:-20;z-index:7">
    <font size="+3" color="#00ffff"><b>.</b></font></div>
    <div id="ob8" class="num" style="position:absolute;left:-20;top:-20;z-index:7">
    <font size="+3" color="#00ffff"><b>.</b></font></div>
    <div id="ob9" class="num" style="position:absolute;left:-20;top:-20;z-index:7">
    <font size="+3" color="#00ffff"><b>.</b></font></div>
    <div id="ob10" class="num" style="position:absolute;left:-20;top:-20;z-index:6">
    <font size="+3" color="#ffff00"><b>.</b></font></div>
    <div id="ob11" class="num" style="position:absolute;left:-20;top:-20;z-index:6">
    <font size="+3" color="#ffff00"><b>.</b></font></div>
    <div id="ob12" class="num" style="position:absolute;left:-20;top:-20;z-index:6">
    <font size="+3" color="#ffff00"><b>.</b></font></div>
    </body>
    </html>
    <!-- END Script Size: 5.93 KB -->

  10. #50
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    ساعت میله ای با جدول
    ----------------
    <HEAD>
    <SCRIPT LANGUAGE="JavaScript">

    <!-- Begin
    function clock() {
    var t = new Date();
    var h = t.getHours();
    var m = t.getMinutes();
    var s = t.getSeconds();
    var units = new String("  ");
    var hours = t.getHours();
    var min = t.getMinutes();
    var sec = t.getSeconds();
    document.clock.hours.value = units.substring(0, hours);
    document.clock.minutes.value = units.substring(0, min);
    document.clock.seconds.value = units.substring(0, sec);
    var status = "AM";
    if (hours > 11)
    status = "PM";
    if (hours < 11)
    hours -= 12;
    if (min < 10)
    min = "0" + min;
    if (sec < 10)
    sec = "0" + sec;
    document.clock.h.value = hours;
    document.clock.m.value = min;
    document.clock.s.value = sec;
    document.clock.time.value = hours + ":" + min + ":" + sec + " " + status;
    window.setTimeout("clock()", 900);
    }
    // End -->
    </script>
    </HEAD>

    <!-- CONTINUE -->

    <BODY onLoad="clock();">

    <!-- STEP THREE: Copy this code into the BODY of your HTML document -->

    <form name="clock"><table><tr><td>Hours:</td><td>
    <input type="text" name="h" size="10" style="border: 0"></td></tr><tr><td colspan=2><input type=text name="hours" size="24" style="color: navy"></td>
    </tr><tr><td>Minutes:</td><td><input type="text" name="m" size="10" style="border: 0">
    </td></tr><tr><td colspan=2><input type=text name="minutes" size="60" style="color: navy"></td></tr>
    <tr><td>Seconds:</td><td><input type="text" name="s" size="10" style="border: 0"></td>
    </tr><tr><td colspan=2><input type=text name="seconds" size="69" style="color: navy">
    </td></tr><tr><td>Time: <input type=text name="time" size="20" style="border: 0">
    </td></tr></table></form>
    <!-- END Script Size: 3.07 KB -->

Thread Information

Users Browsing this Thread

هم اکنون 1 کاربر در حال مشاهده این تاپیک میباشد. (0 کاربر عضو شده و 1 مهمان)

User Tag List

قوانين ايجاد تاپيک در انجمن

  • شما نمی توانید تاپیک ایحاد کنید
  • شما نمی توانید پاسخی ارسال کنید
  • شما نمی توانید فایل پیوست کنید
  • شما نمی توانید پاسخ خود را ویرایش کنید
  •