国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

js 遮罩效果

caige / 1587人閱讀

摘要:

 -------------------------------tipswindown.js------------------------------

///-------------------------------------------------------------------------
//jQuery彈出窗口 By Await [2009-11-22]
//--------------------------------------------------------------------------
/*參數:[可選參數在調用時可寫可不寫,其他為必寫]
----------------------------------------------------------------------------
    title:    窗口標題
  content:  內容(可選內容為){ text | id | img | url | iframe }
    width:    內容寬度
   height:    內容高度
     drag:  是否可以拖動(ture為是,false為否)
     time:    自動關閉等待的時間,為空是則不自動關閉
   showbg:    [可選參數]設置是否顯示遮罩層(0為不顯示,1為顯示)
  cssName:  [可選參數]附加class名稱
 ------------------------------------------------------------------------*/
 //示例:
 //------------------------------------------------------------------------
 //simpleWindown("例子","text:例子","500","400","true","3000","0","exa")
 //------------------------------------------------------------------------
var showWindown = true;
var templateSrc = "http://www.7daysinn.cn"; //設置loading.gif路徑
function tipsWindown(title,content,width,height,drag,time,showbg,cssName,backcall) {
    $("#windown-box").remove(); //請除內容
    var width = width>= 950?this.width=950:this.width=width;        //設置最大窗口寬度
    var height = height>= 527?this.height=527:this.height=height;  //設置最大窗口高度
    if(showWindown == true) {
        var simpleWindown_html = new String;
            simpleWindown_html = "
"; simpleWindown_html += "
"; simpleWindown_html += "

關閉
"; simpleWindown_html += "
"; simpleWindown_html += "
"; $("body").append(simpleWindown_html); show = false; } contentType = content.substring(0,content.indexOf(":")); content = content.substring(content.indexOf(":")+1,content.length); switch(contentType) { case "text": $("#windown-content").html(content); break; case "id": $("#windown-content").html($("#"+content+"").html()); break; case "img": $("#windown-content").ajaxStart(function() { $(this).html(""); }); $.ajax({ error:function(){ $("#windown-content").html("

加載數據出錯...

"); }, success:function(html){ $("#windown-content").html(""); } }); break; case "url": var content_array=content.split("?"); $("#windown-content").ajaxStart(function(){ $(this).html(""); }); $.ajax({ type:content_array[0], url:content_array[1], data:content_array[2], error:function(){ $("#windown-content").html("

加載數據出錯...

"); }, success:function(html){ $("#windown-content").html(html); if(backcall) backcall(); } }); break; case "iframe": $("#windown-content").ajaxStart(function(){ $(this).html(""); }); $.ajax({ error:function(){ $("#windown-content").html("

加載數據出錯...

"); }, success:function(html){ $("#windown-content").html(""); } }); } $("#windown-title h2").html(title); if(showbg == "true") {$("#windownbg").show();}else {$("#windownbg").remove();}; $("#windownbg").animate({opacity:"0.5"},"normal");//設置透明度 $("#windown-box").show(); if( height >= 527 ) { $("#windown-title").css({width:(parseInt(width)+22)+"px"}); $("#windown-content").css({width:(parseInt(width)+17)+"px",height:height+"px"}); }else { $("#windown-title").css({width:(parseInt(width)+10)+"px"}); $("#windown-content").css({width:width+"px",height:height+"px"}); } var cw = document.documentElement.clientWidth,ch = document.documentElement.clientHeight,est = document.documentElement.scrollTop; var _version = $.browser.version; if ( _version == 6.0 ) { $("#windown-box").css({left:"50%",top:(parseInt((ch)/2)+est)+"px",marginTop: -((parseInt(height)+53)/2)+"px",marginLeft:-((parseInt(width)+32)/2)+"px",zIndex: "999999"}); }else { $("#windown-box").css({left:"50%",top:"50%",marginTop:-((parseInt(height)+53)/2)+"px",marginLeft:-((parseInt(width)+32)/2)+"px",zIndex: "999999"}); }; var Drag_ID = document.getElementById("windown-box"),DragHead = document.getElementById("windown-title"); var moveX = 0,moveY = 0,moveTop,moveLeft = 0,moveable = false; if ( _version == 6.0 ) { moveTop = est; }else { moveTop = 0; } var sw = Drag_ID.scrollWidth,sh = Drag_ID.scrollHeight; DragHead.onmouseover = function(e) { if(drag == "true"){DragHead.style.cursor = "move";}else{DragHead.style.cursor = "default";} }; DragHead.onmousedown = function(e) { if(drag == "true"){moveable = true;}else{moveable = false;} e = window.event?window.event:e; var ol = Drag_ID.offsetLeft, ot = Drag_ID.offsetTop-moveTop; moveX = e.clientX-ol; moveY = e.clientY-ot; document.onmousemove = function(e) { if (moveable) { e = window.event?window.event:e; var x = e.clientX - moveX; var y = e.clientY - moveY; if ( x > 0 &&( x + sw < cw) && y > 0 && (y + sh < ch) ) { Drag_ID.style.left = x + "px"; Drag_ID.style.top = parseInt(y+moveTop) + "px"; Drag_ID.style.margin = "auto"; } } } document.onmouseup = function () {moveable = false;}; Drag_ID.onselectstart = function(e){return false;} } $("#windown-content").attr("class","windown-"+cssName); if( time == "" || typeof(time) == "undefined") { $("#windown-close").click(function() { showselect("t123_") $("#windownbg").remove(); $("#windown-box").fadeOut("slow",function(){$(this).remove();}); }); }else { setTimeout(closeWindown,time); } hideselect("t123_"); } var closeWindown = function() { showselect("t123_"); $("#windownbg").remove(); $("#windown-box").fadeOut("slow",function(){$(this).remove();}); } function hideselect(per) { var _version = $.browser.version; if ( _version == 6.0 ) { $("select",document).each(function(){ if($(this).attr("name")) { if($(this).attr("name").substring(0,5)==per) { name = $(this).attr("name").substring(5); $(this).attr("name",name); $(this).css("display",""); } if($(this).css("display")!="none") { name = per+$(this).attr("name"); $(this).attr("name",name); } $(this).css("display","none"); } }); } } function showselect(per) { var _version = $.browser.version; if ( _version == 6.0 ) { $("select",document).each(function(){ if($(this).attr("name")) { if($(this).attr("name").substring(0,5)==per) { name = $(this).attr("name").substring(5); $(this).attr("name",name); $(this).css("display",""); } } }); } } ---------------------------style.css---------------------------------- ---------------------------------html------------------------------
  • ?javascript彈出層插件可自定義js彈出層動畫特效
  • ?jquery彈出層鼠標點擊彈出層可浮動在屏幕滾動
  • ?jquery彈出層特效animate制作類似flash動畫效果彈出層
  • ?jquery 彈出層 點擊按鈕彈出層兼容IE和firefox瀏覽器
  • ?jquery 彈出層插件 鼠標點擊文字獲取標題彈出層內容信息
  • ?jquery 彈出層插件 ThickBox 多功能彈出層插件支持圖片、ajax、內嵌內容彈等
  • ?jquery 彈出層插件FancyBox彈出層演示支持圖片、文章內容、flash swf彈出層等
  • ?jquery彈出層鼠標點擊彈出層可浮動在屏幕滾動
  • ?jquery彈出層特效animate制作類似flash動畫效果彈出層
  • ?jquery 彈出層 點擊按鈕彈出層兼容IE和firefox瀏覽器
  • ?jquery 彈出層插件 鼠標點擊文字獲取標題彈出層內容信息
  • ?jquery 彈出層插件 ThickBox 多功能彈出層插件支持圖片、ajax、內嵌內容彈等
  • ?jquery 彈出層插件FancyBox彈出層演示支持圖片、文章內容、flash swf彈出層等
  • ?javascript彈出層插件可自定義js彈出層動畫特效
  • ?jquery彈出層鼠標點擊彈出層可浮動在屏幕滾動
  • ?jquery彈出層特效animate制作類似flash動畫效果彈出層
  • ?jquery 彈出層 點擊按鈕彈出層兼容IE和firefox瀏覽器
  • ?jquery 彈出層插件 鼠標點擊文字獲取標題彈出層內容信息
  • ?jquery 彈出層插件 ThickBox 多功能彈出層插件支持圖片、ajax、內嵌內容彈等
  • ?jquery 彈出層插件FancyBox彈出層演示支持圖片、文章內容、flash swf彈出層等
  • ?jquery彈出層鼠標點擊彈出層可浮動在屏幕滾動
  • ?jquery彈出層特效animate制作類似flash動畫效果彈出層
  • ?jquery 彈出層 點擊按鈕彈出層兼容IE和firefox瀏覽器
  • ?jquery 彈出層插件 鼠標點擊文字獲取標題彈出層內容信息
  • ?jquery 彈出層插件 ThickBox 多功能彈出層插件支持圖片、ajax、內嵌內容彈等
  • ?jquery 彈出層插件FancyBox彈出層演示支持圖片、文章內容、flash swf彈出層等
  • 文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

    轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/79966.html

    相關文章

    • 有趣的交互系列 - 文字遮罩入場效果

      摘要:在這個系列里分享一些簡單,但是很有意思的交互效果附上地址和地址滾動,添加對應加載的比如巧用實現文字和遮罩層的動畫效果文字動畫遮罩層動畫首先然后把且,這樣就實現了遮罩層的進場和退出效果隨機獲取數組項 在這個系列里分享一些簡單,但是很有意思的交互效果~附上demo地址和github地址 showImg(https://makapicture.oss-cn-beijing.aliyuncs....

      鄒強 評論0 收藏0
    • 有趣的交互系列 - 文字遮罩入場效果

      摘要:在這個系列里分享一些簡單,但是很有意思的交互效果附上地址和地址滾動,添加對應加載的比如巧用實現文字和遮罩層的動畫效果文字動畫遮罩層動畫首先然后把且,這樣就實現了遮罩層的進場和退出效果隨機獲取數組項 在這個系列里分享一些簡單,但是很有意思的交互效果~附上demo地址和github地址 showImg(https://makapicture.oss-cn-beijing.aliyuncs....

      tyheist 評論0 收藏0
    • 用原生js寫出一個彈框+遮罩層的頁面,完成彈框垂直居中頁面且點擊彈框外任何區域去掉彈框和遮罩層的功能

      摘要:背景官網有個對話框組件如圖如果哪天不能用框架了不能用組件了只能用原生寫頁面現在的我可能要一個頁面寫一年目標用原生完成這個頁面彈框處于垂直居中狀態且點擊彈框外任意區域關閉彈框寫了很久很久時間就不說了遇到的最難的問題就是不知道怎么關閉彈框后面還 背景:Ant官網有個對話框Model組件.如圖: showImg(https://segmentfault.com/img/bVbwMCG?w=1...

      betacat 評論0 收藏0
    • 用原生js寫出一個彈框+遮罩層的頁面,完成彈框垂直居中頁面且點擊彈框外任何區域去掉彈框和遮罩層的功能

      摘要:背景官網有個對話框組件如圖如果哪天不能用框架了不能用組件了只能用原生寫頁面現在的我可能要一個頁面寫一年目標用原生完成這個頁面彈框處于垂直居中狀態且點擊彈框外任意區域關閉彈框寫了很久很久時間就不說了遇到的最難的問題就是不知道怎么關閉彈框后面還 背景:Ant官網有個對話框Model組件.如圖: showImg(https://segmentfault.com/img/bVbwMCG?w=1...

      CoderDock 評論0 收藏0
    • CSS遮罩層:hover狀態丟失及解決方案

      摘要:在時,亦可進一步改變該遮罩層的色彩和透明度。遮罩層實現及狀態丟失問題代碼代碼在時,如果快速點擊鼠標,可能會丟失的效果。狀態丟失的簡單解決方案基本思路是,點擊鼠標時給添加,強制它顯示里的樣式。 CSS遮罩層,顧名思義就是在div上,再鋪一層半透明的div。在hover時,亦可進一步改變該遮罩層的色彩和透明度。我們可以通過css定位和背景色實現。 CSS遮罩層實現及hover狀態丟失問題 ...

      vincent_xyb 評論0 收藏0
    • CSS遮罩層:hover狀態丟失及解決方案

      摘要:在時,亦可進一步改變該遮罩層的色彩和透明度。遮罩層實現及狀態丟失問題代碼代碼在時,如果快速點擊鼠標,可能會丟失的效果。狀態丟失的簡單解決方案基本思路是,點擊鼠標時給添加,強制它顯示里的樣式。 CSS遮罩層,顧名思義就是在div上,再鋪一層半透明的div。在hover時,亦可進一步改變該遮罩層的色彩和透明度。我們可以通過css定位和背景色實現。 CSS遮罩層實現及hover狀態丟失問題 ...

      Steven 評論0 收藏0

    發表評論

    0條評論

    最新活動
    閱讀需要支付1元查看
    <