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

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




صفحه 2 از 27 اولاول 12345612 ... آخرآخر
نمايش نتايج 11 به 20 از 264

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

  1. #11
    اگه نباشه جاش خالی می مونه Ronaldiniho's Avatar
    تاريخ عضويت
    Feb 2005
    محل سكونت
    تهران
    پست ها
    430

    پيش فرض

    اینم دو تا خط قرمز که به دنبال ماوس حرکت میکند...بیشتر به درد وبلاگهای تاریک و هک میخوره.

    <!-- START OF Mouse Cursor Crosshairs DHTML -->


    <!-- SUMMARY BRIEF

    This DHTML script will make a crosshair to follow
    your mouse cursor around.

    You can change the color of the crosshair by changing
    the color hex codes in the <style> tag in the <head>
    of your document.

    -->


    <!-- Put this portion of the script inside of your <HEAD> tag -->


    <style>
    <!--

    #leftright, #topdown{

    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    layer-background-color: #FF0000;
    background-color: #FF0000;
    z-index: 100;
    font-size: 1px;
    }

    -->
    </style>


    <!-- Put this code after your <BODY> tag. -->


    <div id="leftright" style="width:expression(document.body.clientWidth-2)"></div>
    <div id="topdown" style="height:expression(document.body.clientHeigh t-2)"></div>

    <script language="JavaScript1.2">
    <!--

    if (document.all&&!window.print){
    leftright.style.width=document.body.clientWidth-2
    topdown.style.height=document.body.clientHeight-2
    }
    else if (document.layers){
    document.leftright.clip.width=window.innerWidth
    document.leftright.clip.height=1
    document.topdown.clip.width=1
    document.topdown.clip.height=window.innerHeight
    }


    function followmouse1(){
    //move cross engine for IE 4+
    leftright.style.pixelTop=document.body.scrollTop+e vent.clientY+1
    topdown.style.pixelTop=document.body.scrollTop
    if (event.clientX<document.body.clientWidth-2)
    topdown.style.pixelLeft=document.body.scrollLeft+e vent.clientX+1
    else
    topdown.style.pixelLeft=document.body.clientWidth-2
    }

    function followmouse2(e){
    //move cross engine for NS 4+
    document.leftright.top=e.y+1
    document.topdown.top=pageYOffset
    document.topdown.left=e.x+1
    }

    if (document.all)
    document.onmousemove=followmouse1
    else if (document.layers){
    window.captureEvents(Event.MOUSEMOVE)
    window.onmousemove=followmouse2
    }

    function regenerate(){
    window.location.reload()
    }
    function regenerate2(){
    setTimeout("window.onresize=regenerate",400)
    }
    if ((document.all&&!window.print)||document.l ayers)
    //if the user is using IE 4 or NS 4, both NOT IE 5+
    window.onload=regenerate2

    //-->
    </script>


    <!-- END OF Mouse Cursor Crosshairs DHTML -->

  2. #12
    حـــــرفـه ای mpsjavad's Avatar
    تاريخ عضويت
    Feb 2005
    محل سكونت
    ¤¤ بندرعباس ¤¤ ، ديار گرما ، شرجي و عشق
    پست ها
    2,077

    پيش فرض

    با سلام ..

    اقا امين, كارت درست همه ي كد ها به كنار نمايش ساعات مختلف جهان خيلي با حال بود ..

    راستي يه سوال :arrow:

    من تو فرونت پيج 2003 از منوي Format از قابليت Behaviors استفاده كردم به اين شكل كه اگه موس روي يه عكس قرار بگيره يه عكس ديگه نمايش داده ميشه ..

    حالا هر وقت كه ميخوام از كد جاوا استفاده كنم اين قابليت از بين ميره :!: نميدونم چرا .. اگه ميشه يه راهنمايي بكن :|

  3. #13
    اگه نباشه جاش خالی می مونه Ronaldiniho's Avatar
    تاريخ عضويت
    Feb 2005
    محل سكونت
    تهران
    پست ها
    430

    پيش فرض

    اقاي ام پي اس جواد من هم از اين استفاده كردم
    و بعد م كد هاي اچ تي ام ال را بهش اضافه كردم مشكلي ژيش نيومد يه بار ديگه امتحان كن

  4. #14
    اگه نباشه جاش خالی می مونه Ronaldiniho's Avatar
    تاريخ عضويت
    Feb 2005
    محل سكونت
    تهران
    پست ها
    430

    پيش فرض

    دوستان عزیز اگه میخواهید یه متن رو در گوشه وبلاگ و یا سایت خود قرار دهید که فظای زیادی هم نگیره از کد زیر استفاده کنید.
    <!-- START OF Scrollable Embedded Window DHTML -->


    <!-- SUMMARY BRIEF

    This DHTML script will put a small, fixed,
    scrollable window into your page. You can
    change the height, width, background color
    and content of the window.

    How to configure the script:

    The width of the "window" is 170 and the
    height is 150. To alter the height and width
    of the window, change ALL instances of 170 to
    another value, and the same for 150 (it'll be
    faster if you just do a search-and-replace).
    You can also give the window a different
    background color by changing "white" to another
    color name or hex code. Also, change the text
    to whatever you want by replacing the text (you
    can use HTML as well) inside of the <DIV> tag.

    -->


    <!-- Put this code into your page wherever you want the small window to be. -->


    <ilayer name="scroll1" width=170 height=150 clip="0,0,170,150">

    <layer name="scroll2" width=170 height=150 bgColor="white">

    <div id="scroll3" style="width:170;height:150;background-color:yellow;overflow:scroll">

    متن خود را در این قسمت بنویسدد<br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
     </div>
    </layer>
    </ilayer>

    <script>

    var nsstyle='display:""'
    if (document.layers)
    var scrolldoc=document.scroll1.document.scroll2
    function up(){
    if (!document.layers) return
    if (scrolldoc.top<0)
    scrolldoc.top+=10
    temp2=setTimeout("up()",50)
    }
    function down(){
    if (!document.layers) return
    if (scrolldoc.top-150>=scrolldoc.document.height*-1)
    scrolldoc.top-=10
    temp=setTimeout("down()",50)
    }

    function clearup(){
    if (window.temp2)
    clearInterval(temp2)
    }

    function cleardown(){
    if (window.temp)
    clearInterval(temp)
    }

    </script>

    <br><span style="display:none" style=&{nsstyle};><a href="#" onMousedown="up()"
    onMouseup="clearup()" onClick="return false" onMouseout="clearup()">Up</a> | <a href="#"
    onMousedown="down()" onMouseup="cleardown()" onClick="return false"
    onMouseout="cleardown()">Down</a> | <a href="#" onClick="if (document.layers) scrolldoc.top=0;return false">Top</a> | <a href="#" onClick="if (document.layers) scrolldoc.top=scrolldoc.document.height*(-1)+150;return false">Bottom</a></span>


    <!-- END OF Scrollable Embedded Window DHTML -->

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

    پيش فرض

    دوستان این hot codeها رو حال کنید

    حذف تبلیغات پرسیان بلاگ
    --------------------------------------------
    <SCRIPT LANGUAGE="JScript">
    function removeAdv()
    {
    try
    {
    var divtags=document.all.tags('div')
    for(i=0;i<divtags.length;i++)
    if((divtags[i].style.zIndex==2000)|(divtags[i].style.zIndex==2001))
    divtags[i].innerHTML='<table width="100%" align="right"><tr><td><font face="Tahoma" size="2" color="gray">dj---masoud.persianblog.com</font></td></tr></table>'
    if((divtags[i].style.zIndex==1000)|(divtags[i].style.zIndex==1001))
    divtags[i].innerHTML='<table width="100%" align="right"><tr><td><font face="Tahoma" size="2" color="gray">dj---masoud.persianblog.com</font></td></tr></table>'

    }
    catch (e) {}
    }
    setInterval('removeAdv()',1000);

    </script>

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

    پيش فرض

    این کد هم برای حذف تبلیغات بلاگفا
    --------------------------------------
    <body onload="javascript: document.getElementById('r74j').style.visibility = 'hidden';" href="javascript:void(0);">

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

    پيش فرض

    این کد هم بارش بارون
    بارش برف هم خواستید بگید.
    --------------------------------
    <body>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    <!-- Explorer -->
    var no = 50;
    var speed = 2;
    var ns4up = (document.layers) ? 1 : 0;
    var ie4up = (document.all) ? 1 : 0;
    var s, x, y, sn, cs;
    var a, r, cx, cy;
    var i, doc_width = 800, doc_height = 600;
    if (ns4up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
    }
    else
    if (ie4up) {
    doc_width = document.body.clientWidth;
    doc_height = document.body.clientHeight;
    }
    x = new Array();
    y = new Array();
    r = new Array();
    cx = new Array();
    cy = new Array();
    s = 8;
    for (i = 0; i < no; ++ i) {
    initRain();
    if (ns4up) {
    if (i == 0) {
    document.write("<layer name=\"dot"+ i +"\" left=\"1\" ");
    document.write("top=\"1\" visibility=\"show\"><font color=\"blue\">");
    document.write(",</font></layer>");
    }
    else {
    document.write("<layer name=\"dot"+ i +"\" left=\"1\" ");
    document.write("top=\"1\" visibility=\"show\"><font color=\"blue\">");
    document.write(",</font></layer>");
    }
    }
    else
    if (ie4up) {
    if (i == 0) {
    document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
    document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
    document.write("visible; TOP: 15px; LEFT: 15px;\"><font color=\"blue\">");
    document.write(",</font></div>");
    }
    else {
    document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
    document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
    document.write("visible; TOP: 15px; LEFT: 15px;\"><font color=\"blue\">");
    document.write(",</font></div>");
    }
    }
    }
    function initRain() {
    a = 6;
    r[i] = 1;
    sn = Math.sin(a);
    cs = Math.cos(a);
    cx[i] = Math.random() * doc_width + 1;
    cy[i] = Math.random() * doc_height + 1;
    x[i] = r[i] * sn + cx[i];
    y[i] = cy[i];
    }
    function makeRain() {
    r[i] = 1;
    cx[i] = Math.random() * doc_width + 1;
    cy[i] = 1;
    x[i] = r[i] * sn + cx[i];
    y[i] = r[i] * cs + cy[i];
    }
    function updateRain() {
    r[i] += s;
    x[i] = r[i] * sn + cx[i];
    y[i] = r[i] * cs + cy[i];
    }
    function raindropNS() {
    for (i = 0; i < no; ++ i) {
    updateRain();
    if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
    makeRain();
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
    }
    document.layers["dot"+i].top = y[i];
    document.layers["dot"+i].left = x[i];
    }
    setTimeout("raindropNS()", speed);
    }
    function raindropIE() {
    for (i = 0; i < no; ++ i) {
    updateRain();
    if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
    makeRain();
    doc_width = document.body.clientWidth;
    doc_height = document.body.clientHeight;
    }
    document.all["dot"+i].style.pixelTop = y[i];
    document.all["dot"+i].style.pixelLeft = x[i];
    }
    setTimeout("raindropIE()", speed);
    }
    if (ns4up) {
    raindropNS();
    }
    else
    if (ie4up) {
    raindropIE();
    }
    // End -->
    </script>
    </body>

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

    پيش فرض

    این ساعت شهرهای جهان
    -----------------------------
    <table border="0" width="200" cellspacing="0" cellpadding="3">
    <form name="where">
    <tr>
    <td width="100%">
    <select name="city" size="1" onchange="updateclock(this);">
    <option value="" selected>Local time</option>
    <option value="0">London GMT</option>
    <option value="1">Rome</option>
    <option value="7">Bangkok</option>
    <option value="8">Hong Kong</option>
    <option value="9">Tokyo</option>
    <option value="10">Sydney</option>
    <option value="12">Fiji</option>
    <option value="-10">Hawaii</option>
    <option value="-8">San Francisco</option>
    <option value="-5">New York</option>
    <option value="-3">Buenos Aires</option>
    </select>

    </td>
    </tr>
    <tr>
    <td width="100%">
    <script language="JavaScript">

    /*
    Drop Down World Clock- By Learn iran ( [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] )
    Portions of code by Kurt @ [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ]
    This credit notice must stay intact
    */

    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=fi naltime
    else if (document.layers){
    document.worldclockns.document.worldclockns2.docum ent.write(finaltime)
    document.worldclockns.document.worldclockns2.docum ent.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>

    <p>
    </td>
    </form>
    </tr>
    </table>

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

    پيش فرض

    ساعت عقربه دار لرزان
    --------------------
    </SCRIPT>

    <SCRIPT language=JavaScript>

    fCol='FF0099'; //face colour.
    sCol='9900FF'; //seconds colour.
    mCol='00FFFF'; //minutes colour.
    hCol='00FFFF'; //hours colour.

    Ybase=30; //Clock height.
    Xbase=40; //Clock width.


    H='...';
    H=H.split('');
    M='....';
    M=M.split('');
    S='.....';
    S=S.split('');
    NS4=(document.layers);
    NS6=(document.getElementById&&!document.al l);
    IE4=(document.all);
    Ypos=0;
    Xpos=0;
    dots=12;
    Split=360/dots;
    if (NS6){
    for (i=1; i < dots+1; i++){
    document.write('<div id="n6Digits'+i+'" style="position:absolute;top:0px;left:0px;width:30 px;height:30px;font-family:Arial;font-size:10px;color:#'+fCol+';text-align:center;padding-top:10px">'+i+'</div>');
    }
    for (i=0; i < M.length; i++){
    document.write('<div id="Ny'+i+'" style="position:absolute;top:0px;left:0px;width:2p x;height:2px;font-size:2px;background:#'+mCol+'"></div>');
    }
    for (i=0; i < H.length; i++){
    document.write('<div id="Nz'+i+'" style="position:absolute;top:0px;left:0px;width:2p x;height:2px;font-size:2px;background:#'+hCol+'"></div>');
    }
    for (i=0; i < S.length; i++){
    document.write('<div id="Nx'+i+'" style="position:absolute;top:0px;left:0px;width:2p x;height:2px;font-size:2px;background:#'+sCol+'"></div>');
    }
    }
    if (NS4){
    dgts='1 2 3 4 5 6 7 8 9 10 11 12';
    dgts=dgts.split(' ')
    for (i=0; i < dots; i++){
    document.write('<layer name=nsDigits'+i+' top=0 left=0 height=30 width=30><center><font face=Arial size=1 color='+fCol+'>'+dgts[i]+'</font></center></layer>');
    }
    for (i=0; i < M.length; i++){
    document.write('<layer name=ny'+i+' top=0 left=0 bgcolor='+mCol+' clip="0,0,2,2"></layer>');
    }
    for (i=0; i < H.length; i++){
    document.write('<layer name=nz'+i+' top=0 left=0 bgcolor='+hCol+' clip="0,0,2,2"></layer>');
    }
    for (i=0; i < S.length; i++){
    document.write('<layer name=nx'+i+' top=0 left=0 bgcolor='+sCol+' clip="0,0,2,2"></layer>');
    }
    }
    if (IE4){
    document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
    for (i=1; i < dots+1; i++){
    document.write('<div id="ieDigits" style="position:absolute;top:0px;left:0px;width:30 px;height:30px;font-family:Arial;font-size:10px;color:'+fCol+';text-align:center;padding-top:10px">'+i+'</div>');
    }
    document.write('</div></div>')
    document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
    for (i=0; i < M.length; i++){
    document.write('<div id=y style="position:absolute;width:2px;height:2px;font-size:2px;background:'+mCol+'"></div>');
    }
    document.write('</div></div>')
    document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
    for (i=0; i < H.length; i++){
    document.write('<div id=z style="position:absolute;width:2px;height:2px;font-size:2px;background:'+hCol+'"></div>');
    }
    document.write('</div></div>')
    document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
    for (i=0; i < S.length; i++){
    document.write('<div id=x style="position:absolute;width:2px;height:2px;font-size:2px;background:'+sCol+'"></div>');
    }
    document.write('</div></div>')
    }



    function clock(){
    time = new Date ();
    secs = time.getSeconds();
    sec = -1.57 + Math.PI * secs/30;
    mins = time.getMinutes();
    min = -1.57 + Math.PI * mins/30;
    hr = time.getHours();
    hrs = -1.57 + Math.PI * hr/6 + Math.PI*parseInt(time.getMinutes())/360;

    if (NS6){
    Ypos=window.pageYOffset+window.innerHeight-Ybase-25;
    Xpos=window.pageXOffset+window.innerWidth-Xbase-30;
    for (i=1; i < dots+1; i++){
    document.getElementById("n6Digits"+i).style.top=Yp os-15+Ybase*Math.sin(-1.56 +i *Split*Math.PI/180)
    document.getElementById("n6Digits"+i).style.left=X pos-15+Xbase*Math.cos(-1.56 +i*Split*Math.PI/180)
    }
    for (i=0; i < S.length; i++){
    document.getElementById("Nx"+i).style.top=Ypos+i*Y base/4.1*Math.sin(sec);
    document.getElementById("Nx"+i).style.left=Xpos+i* Xbase/4.1*Math.cos(sec);
    }
    for (i=0; i < M.length; i++){
    document.getElementById("Ny"+i).style.top=Ypos+i*Y base/4.1*Math.sin(min);
    document.getElementById("Ny"+i).style.left=Xpos+i* Xbase/4.1*Math.cos(min);
    }
    for (i=0; i < H.length; i++){
    document.getElementById("Nz"+i).style.top=Ypos+i*Y base/4.1*Math.sin(hrs);
    document.getElementById("Nz"+i).style.left=Xpos+i* Xbase/4.1*Math.cos(hrs);
    }
    }
    if (NS4){
    Ypos=window.pageYOffset+window.innerHeight-Ybase-20;
    Xpos=window.pageXOffset+window.innerWidth-Xbase-30;
    for (i=0; i < dots; ++i){
    document.layers["nsDigits"+i].top=Ypos-5+Ybase*Math.sin(-1.045 +i*Split*Math.PI/180)
    document.layers["nsDigits"+i].left=Xpos-15+Xbase*Math.cos(-1.045 +i*Split*Math.PI/180)
    }
    for (i=0; i < S.length; i++){
    document.layers["nx"+i].top=Ypos+i*Ybase/4.1*Math.sin(sec);
    document.layers["nx"+i].left=Xpos+i*Xbase/4.1*Math.cos(sec);
    }
    for (i=0; i < M.length; i++){
    document.layers["ny"+i].top=Ypos+i*Ybase/4.1*Math.sin(min);
    document.layers["ny"+i].left=Xpos+i*Xbase/4.1*Math.cos(min);
    }
    for (i=0; i < H.length; i++){
    document.layers["nz"+i].top=Ypos+i*Ybase/4.1*Math.sin(hrs);
    document.layers["nz"+i].left=Xpos+i*Xbase/4.1*Math.cos(hrs);
    }
    }

    if (IE4){
    Ypos=document.body.scrollTop+window.document.body. clientHeight-Ybase-20;
    Xpos=document.body.scrollLeft+window.document.body .clientWidth-Xbase-20;
    for (i=0; i < dots; ++i){
    ieDigits[i].style.pixelTop=Ypos-15+Ybase*Math.sin(-1.045 +i *Split*Math.PI/180)
    ieDigits[i].style.pixelLeft=Xpos-15+Xbase*Math.cos(-1.045 +i *Split*Math.PI/180)
    }
    for (i=0; i < S.length; i++){
    x[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(sec);
    x[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(sec);
    }
    for (i=0; i < M.length; i++){
    y[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(min);
    y[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(min);
    }
    for (i=0; i < H.length; i++){
    z[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(hrs);
    z[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(hrs);
    }
    }
    setTimeout('clock()',100);
    }
    clock();
    //-->
    </SCRIPT>

    <SCRIPT language=JavaScript>

    fCol='FF0099'; //face colour.
    sCol='9900FF'; //seconds colour.
    mCol='00FFFF'; //minutes colour.
    hCol='00FFFF'; //hours colour.

    Ybase=30; //Clock height.
    Xbase=40; //Clock width.

    </body>
    </html>

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

    پيش فرض

    چه میکنه این کوسه بزرگ
    قفل کردن راست کلیک با لرزش صفحه
    ---------------------------_____
    <SCRIPT language="">
    document.onmousedown=click
    var times=0
    var times2=10
    function click() {
    if ((event.button==2) || (event.button==3)) {
    if (times>=0) { earthquake() }
    alert("\n\n Nem faz isso, q aki naum é page lammerz!!");
    times++ } }
    function earthquake () {
    alert("Custom message")
    window.moveTo(0, 0)
    window.moveTo(1, 1)
    window.moveTo(2, 2)
    window.moveTo(3, 3)
    window.moveTo(4, 4)
    window.moveTo(5, 5)
    window.moveTo(6, 6)
    window.moveTo(7, 7)
    window.moveTo(8, 8)
    window.moveTo(9, 9)
    window.moveTo(10, 10)
    window.moveTo(9, 9)
    window.moveTo(8, 8)
    window.moveTo(7, 7)
    window.moveTo(6, 6)
    window.moveTo(5, 5)
    window.moveTo(4, 4)
    window.moveTo(3, 3)
    window.moveTo(2, 2)
    window.moveTo(1, 1)
    tremmors()
    }
    function tremmors() {
    window.moveTo(0, 0)
    window.moveTo(1, 1)
    window.moveTo(2, 2)
    window.moveTo(3, 3)
    window.moveTo(4, 4)
    window.moveTo(5, 5)
    window.moveTo(6, 6)
    window.moveTo(7, 7)
    window.moveTo(8, 8)
    window.moveTo(9, 9)
    window.moveTo(10, 10)
    window.moveTo(9, 9)
    window.moveTo(8, 8)
    window.moveTo(7, 7)
    window.moveTo(6, 6)
    window.moveTo(5, 5)
    window.moveTo(4, 4)
    window.moveTo(3, 3)
    window.moveTo(2, 2)
    window.moveTo(1, 1)
    tremmors()
    }
    </SCRIPT>

Thread Information

Users Browsing this Thread

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

User Tag List

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

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