jquery實現彈出窗口效果 – Javascript教程_JS教程_技術文章 – 程式設計聯盟

用jquery實現圖片任意點擊,到任意地方去,很好用也很好看的效果 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>彈出窗口效果</title> 
<style type="text/css"> 
.window{ 
    width:250px; 
    background-color:#d0def0; 
    position:absolute; 
    padding:2px; 
    margin:5px; 
    display:none; 
    } 
.content{ 
    height:150px; 
    background-color:#FFF; 
    font-size:14px; 
    overflow:auto; 
    } 
    .title{ 
        padding:2px; 
        color:#0CF; 
        font-size:14px; 
        } 
.title img{ 
        float:right; 
        } 
</style> 
<script type="text/javascript" language="javascript" src="../../jquery-1.7.1.min.js"> 
</script> 
<script type="text/javascript" language="javascript" src="window.js"></script> 
<script type="text/javascript" language="javascript"> 
$(document).ready(function(){ 
    $("#btn_center").click(function(){ 
        popCenterWindow(); 
        }); 
         
    $("#btn_right").click(function(){ 
        popRightWindow(); 
        }); 
        $("#btn_left").click(function(){ 
        popLeftWindow(); 
        }); 
         
    }); 
 
</script> 
</head> 
<body> 
<input type="button" value="居中窗口" id="btn_center"> 
<input type="button" value="居左下角" id="btn_left"> 
<input type="button" value="居右下角" id="btn_right"> 
   <p class="window" id="center"> 
<p id="title" class="title"><img src="../../images/close.jpg" />csdn歡迎您-居中窗口</p> 
<p class="content">愛的供養  呼吸的痛</p> 
   </p> 
    
  <p class="window" id="left"> 
<p id="title" class="title"><img src="../../images/close.jpg" />csdn歡迎您-居左窗口</p> 
<p class="content">愛的供養  呼吸的痛</p> 
  </p> 
  <p class="window" id="right"> 
<p id="title" class="title"><img src="../../images/close.jpg" />csdn歡迎您-居右窗口</p> 
<p class="content">愛的供養  呼吸的痛</p> 
  </p> 
</body> 
</html> 
<!—————js插件———->
[html]
//獲取窗口的高度 
var windowHeight; 
//獲取窗口的寬度 
var windowWidth; 
//獲取彈窗的寬度 
var popWidth; 
//獲取彈窗高度 
var popHeight; 
function init(){ 
   windowHeight=$(window).height(); 
   windowWidth=$(window).width(); 
   popHeight=$(".window").height(); 
   popWidth=$(".window").width(); 

//關閉窗口的方法 
function closeWindow(){ 
    $(".title img").click(function(){ 
        $(this).parent().parent().hide("slow"); 
        }); 
    } 
    //定義彈出居中窗口的方法 
    function popCenterWindow(){ 
        init(); 
        //計算彈出窗口的左上角Y的偏移量 
    var popY=(windowHeight-popHeight)/2; 
    var popX=(windowWidth-popWidth)/2; 
    //alert(popY); 
    //設定窗口的位置 
    $("#center").css("top",popY).css("left",popX).slideToggle("slow");  
    closeWindow(); 
    } 
    function popLeftWindow(){ 
        init(); 
        //計算彈出窗口的左上角Y的偏移量 
    var popY=windowHeight-popHeight; 
    //var popX=-(windowWidth-popWidth); 
    //alert(popY); 
    //設定窗口的位置 
    $("#left").css("top",popY).css("left",0).slideToggle("slow"); 
    closeWindow(); 
    } 
    function popRightWindow(){ 
        init(); 
        //計算彈出窗口的左上角Y的偏移量 
    var popY=windowHeight-popHeight; 
    var popX=windowWidth-popWidth; 
    //alert(popY); 
    //設定窗口的位置 
    $("#right").css("top",popY).css("left",popX).slideToggle("slow"); 
    closeWindow(); 
    } 
 
摘自  席偉娜的專欄 

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *