您好,登錄后才能下訂單哦!
sobox 是一款非常實用的,基于 jQuery 的彈窗控件。
功能非常完整,而代碼量又非常少(壓縮完僅8k不到)的一款彈窗控件,
如果你熟悉ext的彈窗控件,那么sobox的使用對你來說應該是愉悅而完全沒有壓力。
<link type="text/css" rel="stylesheet" media="all" href="style.css" />
<script type="text/javascript" src="jquery1.9.1.min.js"></script>
<script type="text/javascript" src="jquery.sobox.js"></script>
$('.a-tip').click(function () {
$.sobox.tip({
content: '愛看不看,上面提示一下~'
});
return false;
});
//通用方法
$.sobox.pop({
/* 彈出類型及類型參數 */
type : 'content', // 彈窗內容模式:'content','target','ajax','iframe',每個模式分別對應每個參量
target : null, // target方式,target目標,如 '.detail','#contbox'
content : null, // content方式,支持html
iframe : null, // iframe方式,值為iframe目標頁鏈接,如:http:// www.baidu.com/
ajax:{url:null,data:null,callback:function(){}}, // ajax事件
/* 位置信息 */
posType:'center', // 'center,win,doc,tc,bc' 位置類型,居中 / 距window頂部 / 距離doucment頂部定 / top水平居中 / bottom水平居中,默認居中
pos:[0,0], // [x,y] 距離document左上角坐標,set模式使用
offset:[0,0], // [x,y] 彈窗相對本來設定位置偏移量,center模式只改變y軸
/* 自定義參數 */
cls : null, // 添加自定義類名
width:360,height:null, // 寬高屬性,iframe模式下,height為iframe高度
defaultShow:true, // 直接顯示pop
visibility:true, // 默認pop執行后顯示(用于部分復雜處理場景)
title : '提示', // 默認標題
showTitle:true, // 標題欄隱藏:默認顯示
showMask : true, // 顯示遮罩
drag :true, // 是否可拖動
maskClick : true, // 點擊背景關閉內容
btn : [], // {cls:,text'確定',link:,removePop: true,callback:}
/* 返回事件 */
beforePop:function(){}, // 彈窗打開之前callback事件
onPop: function(){}, // 頁面打開callback事件
closePop: function(){} // 點擊標題關閉按鈕返回事件
});
btn參數說明:
默認每個btn元素由一個.a-sopop-btn 的a元素內置一個.s-sopop-btn span元素組成,
{
cls:null, // 添加類名
text:'確定', // 默認按鈕文字
link:'#', // 為a添加鏈接,添加鏈接后,按鈕返回鏈接指向地址
removePop: true, // 默認點擊按鈕關閉彈出層
callback:function (removePop){} // 返回事件
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。