一、加载页面上元素
默认rel加载
JS代码:
$("#trigger1").powerFloat();
target参数加载
JS代码:
$("#trigger2").powerFloat({
target: $("#targetBox")
});
target参数为选择器
JS代码:
$("#trigger3").powerFloat({
target: ".target_box"
});
二、Ajax加载外部元素
rel属性显示图片
JS代码:
$("#trigger4").powerFloat({
targetMode: "ajax"
});
target参数为图片地址
JS代码:
$("#trigger5").powerFloat({
target: "http://tp3.sinaimg.cn/2305056670/180/5608200132/0",
targetMode: "ajax"
});
加载外部HTML片段:
HTML代码:
JS代码:
$("#trigger6").powerFloat({
eventType: "click",
target: "/study/201009/html-load.html",
targetMode: "ajax"
});
加载外部页面数据失败:
HTML代码:
JS代码:
$("#trigger7").powerFloat({
eventType: "click",
target: "http://www.baidu.com/",
targetMode: "ajax"
});
三、下拉列表的显示
纯文字列表下拉:
HTML代码:
JS代码:$("#trigger8").powerFloat({
width: "inherit",
eventType: "click",
target: ["唐丽霞", "徐栋梁", "成霞", "王庆花", "王腊梅", "朱小丽", "束方娟", "吉回秀", "陈阳", "更多 >>"],
targetMode: "list"
});
带链接的文字下拉:更多文章▼
JS代码:
$("#trigger9").powerFloat({
width: 250,
target: [
{
href: "##",
text: "这是文章1的说"
},
{
href: "##",
text: "啊,看,文章2"
},
{
href: "##",
text: "啊啦,不好,我把文章3忘家里了!"
},
{
href: "##",
text: "马萨噶,这就是传说中的...文章4..."
},
{
href: "##",
text: "什么嘛,就是文章5,害我白期待一场"
}
],
targetMode: "list"
});
无列表数据显示
JS代码:
$("#trigger10").powerFloat({
targetMode: "list"
});
四、自定义浮动提示
模拟title的tip提示显示:
摸我
我也要
还有我
JS代码:
$(".tipTrigger").powerFloat({
offsets: {
x: -10,
y: 22
},
showDelay: 200,
hoverHold: false,
targetMode: "tip",
targetAttr: "tip",
position: "3-4"
});
右上角固定位置的操作提示层(ajax请求中提示,页面跳转中提示等):
HTML代码:
CSS代码:
.target_fixed { height:25px; padding:1px; position:fixed; _position:absolute; top:0; right:0; }
JS代码:$(".operateTrigger").click(function() {
var txt = $(this).text();
//IE6位置
if (!window.XMLHttpRequest) {
$("#targetFixed").css("top", $(document).scrollTop() + 2);
}
//创建半透明遮罩层
if (!$("#overLay").size()) {
$('<div id="overLay"></div>').prependTo($("body"));
$("#overLay").css({
width: "100%",
backgroundColor: "#000",
opacity: 0.2,
position: "absolute",
left: 0,
top: 0,
zIndex: 99
}).height($(document).height());
}
//显示操作提示,最关键核心代码
$("#targetFixed").powerFloat({
eventType: null,
targetMode: "doing",
target: "正在" + txt + "中...",
position: "1-2"
});
//定时关闭,测试用
setTimeout(function() {
$("#overLay").remove();
$.powerFloat.hide();
}, 2000);
});
五、自定义装载容器
自定义容器装载外部图片(无柔化投影):
CSS代码:.custom_container{position:absolute; background-color:rgba(0, 0, 0, .5); background-color:#999\9;}
.custom_container img{padding:0; position:relative; top:-5px; left:-5px;}
JS代码:
$("#trigger12").powerFloat({
eventType: "click",
targetMode: "ajax",
targetAttr: "src",
container: $("#customContainer"),
reverseSharp: true
});
六、鼠标跟随效果
缩略图显示大图,同时鼠标跟随(垂直方向):
CSS代码:
.dib { display: inline-block; }
HTML代码:
JS代码:
$("#trigger14").powerFloat({
targetMode: "ajax",
targetAttr: "href",
hoverFollow: "y",
position: "6-8"
});
缩略图显示大图,同时鼠标跟随(水平方向):
CSS代码:
.dib { display: inline-block; }
HTML代码:
JS代码:
$("#trigger15").powerFloat({
targetMode: "ajax",
targetAttr: "href",
hoverFollow: "x",
hoverHold: false,
position: "5-7"
});
七、动态Ajax地址
本条目2012年1月28日新增!target参数支持function以实现动态Ajax请求地址效果!
CSS代码:
.dib { display: inline-block; }
JS代码:
$(".triggerImage").powerFloat({
targetMode: "ajax",
target: function() {
return $(this).attr("href");
},
hoverHold: false,
position: "5-7"
});