طلب عاجل

Collapse
X
 
  • الوقت
  • عرض
Clear All
new posts
  • mohamed atef2007
    عضو جديد
    • Mar 2007
    • 1

    #1

    طلب عاجل

    الى كل من اعتبرهم اصدقائى فى المنتدى من لديه اكواد هتمل فى كل شى فا ليرسلها لى
    مثل كود البحث كودالساعه كود اطلس العالم كود الترجمه وغيرهم من الاكواد الخاصه بالمواقع واكون شاكرا من الجميع والسلام عليكم ورحمه الله وبركاته
  • عادل البدري
    مساعد المدير العام لشؤون المنتدى

    • May 2004
    • 9587

    #2
    الرد: طلب عاجل

    مرحبا أخ محمد عاطف ،
    بعض الوظائف التي ذكرتها هي ليست أكواد الهتمل بل بعضها أكودا الجافا سكربيت أو سكربيتات مستقلة فمثلا أذا اردت أن تضع ساعة رقمية يجب عليك أن تضع كود الجافا بهذا النحو في منطقة الرأس
    [HTML]
    <SCRIPT LANGUAGE="JavaScript">
    <!--
    function showFilled(Value) {
    return (Value > 9) ? "" + Value : "0" + Value;
    }
    function StartClock24() {
    TheTime = new Date;
    document.clock.showTime.value = showFilled(TheTime.getHours()) + ":" + showFilled(TheTime.getMinutes()) + ":" + showFilled(TheTime.getSeconds());
    setTimeout("StartClock24()",1000)
    }
    //-->
    </script>
    <style type="text/css">
    td {
    font-family: "Arial,arabic";
    font-size: 20pt;
    text-align: right
    }
    input {
    border : thin solid 1;
    background-color : #90b9d2;
    font-family: "Arial,arabic";
    }
    textarea {
    border : thin solid 1;
    background-color: #90b9d2;
    font-family: "Arial,arabic";
    }
    select {
    border : thin solid 1;
    background-color: #90b9d2;
    font-family: "Arial,arabic";
    }
    .button {
    border : thin solid 1;
    background-color: #90b9d2;
    font-family: "Arial,arabic";
    }
    .radio{
    border : 1;
    background-color: #CCE1CD;
    }
    .checkbox {
    border : 1;
    background-color: #CCE1CD;
    }
    </style>
    [/HTML]
    وفي منطقة البدي
    [HTML]
    <center>
    <form name=clock>
    <input type=text name=showTime size=8 class=input style="color: #FFFFFF; text-align: Center; font-size: 14pt; font-weight: bold">
    </form>
    </center>

    [/HTML]
    وتوجد أكود متعددة للساعة كل كود يبرز شكل مختلف
    أما سكربيت الترجمة وغيره فهي سكربيتات مستقلة يمكن الحصول عليها وتركبيها في الموقع
    بعضها يحتاج الى قاعدة بيانات وما الى ذلك

    تعليق

    • شبح المنتديات
      عضو
      • Jul 2005
      • 27

      #3
      الرد: طلب عاجل

      كود خاص بتواقيت دول العام

      ترميز:
        <form name="where">
       <table border="0" width="200" cellspacing="0" cellpadding="3">
      <tr>
          <td width="100%">
      <select name="city" size="1" onchange="updateclock(this);"> 
      <option selected>التوقيت المحلي</option>
      <option value="3">السعودية</option>
      <option value="4">الإمارات</option>
      <option value="3">الكويت</option>
      <option value="3">لبنان</option>
      <option value="4">عمان</option>
      <option value="3">قطر</option>
      <option value="3">مصر</option>
      <option value="0">المغرب</option>
      <option value="1">تونس</option>
      <option value="3">السودان</option>
      <option value="0">لندن</option> 
      <option value="1">روما</option>
      <option value="7">بانكوك</option>
      <option value="8">هونكغ كونغ</option>
      <option value="9">طوكيو</option> 
      <option value="10">سيدني</option>
      <option value="12">فوجي</option>
      <option value="-10">هاواي</option>
      <option value="-8">سان فرانسيسكو</option> 
      <option value="-5">نيويورك</option>
      </select>
      </td>
        </tr>
        <tr>
          <td width="100%">
      <script language="JavaScript">
      /*
      Drop Down World Clock- By JavaScript Kit ([URL]http://www.javascriptkit.com[/URL])
      Portions of code by Kurt @ [URL]http://www.btinternet.com/~kurt.grigg/javascript[/URL]
      This credit notice must stay intact
      Visit our site at [URL]http://www.star28.com/[/URL] for more code
      */
      if (document.all||document.getElementById)
      document.write('<span id="worldclock" style="font:bold 16px Arial;"></span><br>')
      zone=0;
      isitlocal=true;
      ampm='';
      function updateclock(z){
      zone=z.options[z.selectedIndex].value;
      isitlocal=(z.options[0].selected)?true:false;
      }
      function WorldClock(){
      now=new Date();
      ofst=now.getTimezoneOffset()/60;
      secs=now.getSeconds();
      sec=-1.57+Math.PI*secs/30;
      mins=now.getMinutes();
      min=-1.57+Math.PI*mins/30;
      hr=(isitlocal)?now.getHours():(now.getHours() + parseInt(ofst)) + parseInt(zone);
      hrs=-1.575+Math.PI*hr/6+Math.PI*parseInt(now.getMinutes())/360;
      if (hr < 0) hr+=24;
      if (hr > 23) hr-=24;
      ampm = (hr > 11)?"PM":"AM";
      statusampm = ampm.toLowerCase();
      hr2 = hr;
      if (hr2 == 0) hr2=12;
      (hr2 < 13)?hr2:hr2 %= 12;
      if (hr2<10) hr2="0"+hr2
      var finaltime=hr2+':'+((mins < 10)?"0"+mins:mins)+':'+((secs < 10)?"0"+secs:secs)+' '+statusampm;
      if (document.all)
      worldclock.innerHTML=finaltime
      else if (document.getElementById)
      document.getElementById("worldclock").innerHTML=finaltime
      else if (document.layers){
      document.worldclockns.document.worldclockns2.document.write(finaltime)
      document.worldclockns.document.worldclockns2.document.close()
      }
      
      setTimeout('WorldClock()',1000);
      }
      window.onload=WorldClock
      //-->
      </script>
      <!--Place holder for NS4 only-->
      <ilayer id="worldclockns" width=100% height=35><layer id="worldclockns2" width=100% height=35 left=0 top=0 style="font:bold 16px Arial;"></layer></ilayer>
      </td></tr></table></form>
      شريط متحرك للصور بشكل عمودي
      تصلح كشريط للدعاية و أغراض أخرى


      // Visit our site at http://www.star28.com/ for more code// Translated By www.star28.com////////configure the below four variables to change the style of the slider/////////set the scrollerwidth and scrollerheight to the width/height of the LARGEST image in your slideshow!var scrollerwidth=106 // عرض المربع الذي ستظهر فيه الصورvar scrollerheight=106 // طول المربع الذي ستظهر فيه الصورvar scrollerbgcolor='black' // لون خلفية المربع//3000 miliseconds=3 secondsvar pausebetweenimages=3000 // الفارق الزمني بين كل صورة//configure the below variable to change the images used in the slideshow. If you wish the images to be clickable, simply wrap the images with the appropriate tag// غير الروابط للذي يناسبكvar slideimages=new Array()slideimages[0]='' slideimages[1]=''slideimages[2]=''slideimages[3]=''slideimages[4]=''//extend this list///////Do not edit pass this line////////////////////////////// لا تغير شي هون إلا اذا كنت عارف شو تساوي///////////////////////if (slideimages.length>1)i=2elsei=0function move1(whichlayer){tlayer=eval(whichlayer)if (tlayer.top>0&&tlayer.top=tlayer.document.height*-1){tlayer.top-=5setTimeout("move1(tlayer)",100)}else{tlayer.top=scrollerheighttlayer.document.write(slideimages[i])tlayer.document.close()if (i==slideimages.length-1)i=0elsei++}}function move2(whichlayer){tlayer2=eval(whichlayer)if (tlayer2.top>0&&tlayer2.top=tlayer2.document.height*-1){tlayer2.top-=5setTimeout("move2(tlayer2)",100)}else{tlayer2.top=scrollerheighttlayer2.document.write(slideimages[i])tlayer2.document.close()if (i==slideimages.length-1)i=0elsei++}}function move3(whichdiv){tdiv=eval(whichdiv)if (tdiv.style.pixelTop>0&&tdiv.style.pixelTop=tdiv.offsetHeight*-1){tdiv.style.pixelTop-=5setTimeout("move3(tdiv)",100)}else{tdiv.style.pixelTop=scrollerheighttdiv.innerHTML=slideimages[i]if (i==slideimages.length-1)i=0elsei++}}function move4(whichdiv){tdiv2=eval(whichdiv)if (tdiv2.style.pixelTop>0&&tdiv2.style.pixelTop=tdiv2.offsetHeight*-1){tdiv2.style.pixelTop-=5setTimeout("move4(second2)",100)}else{tdiv2.style.pixelTop=scrollerheighttdiv2.innerHTML=slideimag es[i]if (i==slideimages.length-1)i=0elsei++}}function startscroll(){if (document.all){move3(first2)second2.style.top=scrollerheight}else if (document.layers){document.main.visibility='show'move1(document.main.document.first)document.main.do cument.second.top=scrollerheight+5document.main.document.second.visibility='show'}}window.onload=sta rtscroll
      ترميز:
      <script language="JavaScript1.2">
      // Visit our site at [URL]http://www.star28.com/[/URL] for more code
      // Translated By [URL="http://www.star28.com/"]www.star28.com/[/URL]
      ///////configure the below four variables to change the style of the slider///////
      //set the scrollerwidth and scrollerheight to the width/height of the LARGEST image in your slideshow!
      var scrollerwidth=106           //   عرض المربع الذي ستظهر فيه الصور
      var scrollerheight=106          //   طول المربع الذي ستظهر فيه الصور
      var scrollerbgcolor='black'     //   لون خلفية المربع
      //3000 miliseconds=3 seconds
      var pausebetweenimages=3000     //   الفارق الزمني بين كل صورة
      
      //configure the below variable to change the images used in the slideshow. If you wish the images to be clickable, simply wrap the images with the appropriate <a> tag
      //  غير الروابط للذي يناسبك
      var slideimages=new Array()
      slideimages[0]='<a href="<A href="http://www.star28.com.com"><img">http://www.star28.com.com"><img src="[URL]http://www.star28.com/java/java6/t1.gif[/URL]" border=0"></a>'     
      slideimages[1]='<a href="<A href="http://www.star28.com.com"><img">http://www.star28.com.com"><img src="[URL]http://www.star28.com/java/java6/t2.gif[/URL]" border=0"></a>'
      slideimages[2]='<a href="<A href="http://www.star28.com.com"><img">http://www.star28.com.com"><img src="[URL]http://www.star28.com/java/java6/t3.gif[/URL]" border=0"></a>'
      slideimages[3]='<a href="<A href="http://www.star28.com.com"><img">http://www.star28.com.com"><img src="[URL]http://www.star28.com/java/java6/t4.gif[/URL]" border=0"></a>'
      slideimages[4]='<a href="<A href="http://www.star28.com.com"><img">http://www.star28.com.com"><img src="[URL]http://www.star28.com/java/java6/t5.gif[/URL]" border=0"></a>'
      //extend this list
      ///////Do not edit pass this line///////////////////////
      /////// لا تغير شي هون إلا اذا كنت عارف شو تساوي///////////////////////
      if (slideimages.length>1)
      i=2
      else
      i=0
      function move1(whichlayer){
      tlayer=eval(whichlayer)
      if (tlayer.top>0&&tlayer.top<=5){
      tlayer.top=0
      setTimeout("move1(tlayer)",pausebetweenimages)
      setTimeout("move2(document.main.document.second)",pausebetweenimages)
      return
      }
      if (tlayer.top>=tlayer.document.height*-1){
      tlayer.top-=5
      setTimeout("move1(tlayer)",100)
      }
      else{
      tlayer.top=scrollerheight
      tlayer.document.write(slideimages[i])
      tlayer.document.close()
      if (i==slideimages.length-1)
      i=0
      else
      i++
      }
      }
      function move2(whichlayer){
      tlayer2=eval(whichlayer)
      if (tlayer2.top>0&&tlayer2.top<=5){
      tlayer2.top=0
      setTimeout("move2(tlayer2)",pausebetweenimages)
      setTimeout("move1(document.main.document.first)",pausebetweenimages)
      return
      }
      if (tlayer2.top>=tlayer2.document.height*-1){
      tlayer2.top-=5
      setTimeout("move2(tlayer2)",100)
      }
      else{
      tlayer2.top=scrollerheight
      tlayer2.document.write(slideimages[i])
      tlayer2.document.close()
      if (i==slideimages.length-1)
      i=0
      else
      i++
      }
      }
      function move3(whichdiv){
      tdiv=eval(whichdiv)
      if (tdiv.style.pixelTop>0&&tdiv.style.pixelTop<=5){
      tdiv.style.pixelTop=0
      setTimeout("move3(tdiv)",pausebetweenimages)
      setTimeout("move4(second2)",pausebetweenimages)
      return
      }
      if (tdiv.style.pixelTop>=tdiv.offsetHeight*-1){
      tdiv.style.pixelTop-=5
      setTimeout("move3(tdiv)",100)
      }
      else{
      tdiv.style.pixelTop=scrollerheight
      tdiv.innerHTML=slideimages[i]
      if (i==slideimages.length-1)
      i=0
      else
      i++
      }
      }
      function move4(whichdiv){
      tdiv2=eval(whichdiv)
      if (tdiv2.style.pixelTop>0&&tdiv2.style.pixelTop<=5){
      tdiv2.style.pixelTop=0
      setTimeout("move4(tdiv2)",pausebetweenimages)
      setTimeout("move3(first2)",pausebetweenimages)
      return
      }
      if (tdiv2.style.pixelTop>=tdiv2.offsetHeight*-1){
      tdiv2.style.pixelTop-=5
      setTimeout("move4(second2)",100)
      }
      else{
      tdiv2.style.pixelTop=scrollerheight
      tdiv2.innerHTML=slideimages[i]
      if (i==slideimages.length-1)
      i=0
      else
      i++
      }
      }
      function startscroll(){
      if (document.all){
      move3(first2)
      second2.style.top=scrollerheight
      }
      else if (document.layers){
      document.main.visibility='show'
      move1(document.main.document.first)
      document.main.document.second.top=scrollerheight+5
      document.main.document.second.visibility='show'
      }
      }
      window.onload=startscroll
      </script>
       
      
      <ilayer id="main" width=&{scrollerwidth}; height=&{scrollerheight}; bgColor=&{scrollerbgcolor}; visibility=hide>
      <layer id="first" left=0 top=1 width=&{scrollerwidth}; >
      <script language="JavaScript1.2">
      if (document.layers)
      document.write(slideimages[0])
      </script>
      </layer>
      <layer id="second" left=0 top=0 width=&{scrollerwidth}; visibility=hide>
      <script language="JavaScript1.2">
      if (document.layers)
      document.write(slideimages[1])
      </script>
      </layer>
      </ilayer>
      <script language="JavaScript1.2">
      if (document.all){
      document.writeln('<span id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hiden;background-color:'+scrollerbgcolor+'">')
      document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0;top:0">')
      document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:0;top:1;">')
      document.write(slideimages[0])
      document.writeln('</div>')
      document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0;top:0">')
      document.write(slideimages[1])
      document.writeln('</div>')
      document.writeln('</div>')
      document.writeln('</span>')
      }
      </script>
      كلام متحرك يظهر في البار العلوي للصفحة

      ترميز:
        <script language="JavaScript1.2">
      // *******************************************************************
      // script by drevil_nz, Michael Dillon, Christchurch New Zealand. 
      // Permission granted to use this script provided this credit        
      // remains intact. Visit my homepage [URL="http://www.chc.quik.co.nz/juggler/mikey.html"]www.chc.quik.co.nz/juggler/mikey.html[/URL]
      // Script written for Internet Explorer 4.0+.
      // ******************************************************************* 
      var message="مرحباً بكم فى موقعنا"     //specifys the title
      var message=message+"          " //gives a pause at the end,1 space=1 speed unit, here I used 10 [EMAIL="spaces@150"]spaces@150[/EMAIL] each = 1.5seconds. 
      i="0"            //declares the variable and sets it to start at 0
      var temptitle=""                 //declares the variable and sets it to have no value yet.
      var speed="150"                  //the delay in milliseconds between letters
      function titler(){
      if (!document.all&&!document.getElementById)
      return
      document.title=temptitle+message.charAt(i)  //sets the initial title
      temptitle=temptitle+message.charAt(i)       //increases the title by one letter
      i++         //increments the counter
      if(i==message.length)       //determines the end of the message
      {
      i="0"         //resets the counter at the end of the message
      temptitle=""        //resets the title to a blank value
      }
      setTimeout("titler()",speed)      //Restarts. Remove line for no-repeat.
      }
      window.onload=titler
      </script>
      تحياتي

      if (document.layers)document.write(slideimages[0])if (document.layers)document.write(slideimages[1])if (document.all){document.writeln('')document.writeln('')document.writeln('')document.write(slideimage s[0])document.writeln('
      ')document.writeln('')document.write(slideimages[1])document.writeln('
      ')document.writeln('
      ')document.writeln('')}

      تعليق

      مواضيع مرتبطة

      Collapse

      جاري العمل...