右上角的facebox关闭按钮
您好,我正在使用 Facebox 插件来显示 iframe 链接。 我想更改关闭按钮的样式。我想在顶部显示它,任何人都可以帮忙解决 CSS 部分吗? 我想让facebox可拖动是否可以这样做..
谢谢
Hi I'm using facebox plugin to display iframe link.
I want to change the style of my close button. I want to show it on Top can any one please help with CSS part.
I want to make facebox draggable is it possible to do soo..
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于拖动facebox窗口,我使用了jquery UI的可拖动插件,如下所示,
$(document).bind('reveal.facebox', function () {
$("#facebox").draggable();
})
就是这样。
对于我使用的关闭按钮 CSS,
facebox .close-image
{
背景颜色:继承;
位置:绝对;
右:-2px;
宽度:24px;
高度:22px;
背景图像:url(../images/close.png);
光标:指针;
z 索引:1103;
显示:无;
}
For Dragging facebox window i used jquery UI's draggable plugin like this,
$(document).bind('reveal.facebox', function () {
$("#facebox").draggable();
})
thats it.
For close button CSS im using,
facebox .close-image
{
background-color: inherit;
position: absolute;
right: -2px;
width: 24px;
height: 22px;
background-image: url(../images/close.png);
cursor: pointer;
z-index: 1103;
display: none;
}