JS實現判斷碰撞的方法,js實現碰撞

來源:互聯網
上載者:User

JS實現判斷碰撞的方法,js實現碰撞

本文執行個體講述了JS實現判斷碰撞的方法。分享給大家供大家參考。具體如下:

JS判斷碰撞方法:
複製代碼 代碼如下:/** 判斷是否碰撞
 * @param obj 原對象
 * @param dobj 目標對象
 */ 
function impact(obj, dobj) { 
    var o = { 
        x: getDefaultStyle(obj, 'left'), 
        y: getDefaultStyle(obj, 'top'), 
        w: getDefaultStyle(obj, 'width'), 
        h: getDefaultStyle(obj, 'height') 
    } 
 
    var d = { 
        x: getDefaultStyle(dobj, 'left'), 
        y: getDefaultStyle(dobj, 'top'), 
        w: getDefaultStyle(dobj, 'width'), 
        h: getDefaultStyle(dobj, 'height') 
    } 
 
    var px, py; 
 
    px = o.x <= d.x ? d.x : o.x; 
    py = o.y <= d.y ? d.y : o.y; 
 
    // 判斷點是否都在兩個對象中 
    if (px >= o.x && px <= o.x + o.w && py >= o.y && py <= o.y + o.h && px >= d.x && px <= d.x + d.w && py >= d.y && py <= d.y + d.h) { 
        return true; 
    } else { 
        return false; 
    } 

 
/** 擷取對象屬性
 * @param obj       對象
 * @param attribute 屬性
 */ 
function getDefaultStyle(obj, attribute) { 
    return parseInt(obj.currentStyle ? obj.currentStyle[attribute] : document.defaultView.getComputedStyle(obj, false)[attribute]); 
}

樣本如下:
複製代碼 代碼如下:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
 <head> 
  <title> demo </title> 
  <style type="text/css"> 
  body{margin:0px;} 
    .main{position:relative;} 
    #f1{position:absolute; background:#FF0000; top:100px; left:100px; width:200px; height:200px; z-index:999} 
    #f2{position:absolute; background:#FFFF00; top:0px; left:0px; width:600px; height:150px;} 
  </style> 
 </head> 
 <body> 
 <div class="main"> 
    <div id="f1"></div> 
    <div id="f2"></div> 
 </div> 
 <script type="text/javascript"> 
    var o = document.getElementById("f1"); 
    var d = document.getElementById("f2"); 
    alert(impact(o, d)); 

    function impact(obj, dobj) { 
        var o = { 
            x: getDefaultStyle(obj, 'left'), 
            y: getDefaultStyle(obj, 'top'), 
            w: getDefaultStyle(obj, 'width'), 
            h: getDefaultStyle(obj, 'height') 
        } 

        var d = { 
            x: getDefaultStyle(dobj, 'left'), 
            y: getDefaultStyle(dobj, 'top'), 
            w: getDefaultStyle(dobj, 'width'), 
            h: getDefaultStyle(dobj, 'height') 
        } 

        var px, py; 

        px = o.x <= d.x ? d.x : o.x; 
        py = o.y <= d.y ? d.y : o.y; 
 
        // 判斷點是否都在兩個對象中 
        if (px >= o.x && px <= o.x + o.w && py >= o.y && py <= o.y + o.h && px >= d.x && px <= d.x + d.w && py >= d.y && py <= d.y + d.h) { 
            return true; 
        } else { 
            return false; 
        } 
    } 

    function getDefaultStyle(obj, attribute) { 
        return parseInt(obj.currentStyle ? obj.currentStyle[attribute] : document.defaultView.getComputedStyle(obj, false)[attribute]); 
    } 
 </script> 
 </body> 
</html>

希望本文所述對大家的javascript程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.