【发布时间】:2017-10-05 15:41:22
【问题描述】:
我正在使用 fancybox 来显示一些图像。当前,当用户悬停图像时,将显示下一个或上一个按钮。但是,有些用户实际上并没有意识到这一点,并在查看第一张图片后关闭了fancybox。
所以,我希望让按钮始终可见。但是,我不知道该怎么做。我试图改变fancybox css
#fancybox-left, #fancybox-right {
position: absolute;
bottom: 0px;
height: 100%;
width: 35%;
cursor: pointer;
outline: none;
background: transparent url('blank.gif');
z-index: 1102;
display: block; // Initially it was "none"
}
但它并不能正常工作。
知道怎么做吗?
感谢任何帮助...谢谢...
【问题讨论】: