【发布时间】:2013-09-10 06:03:16
【问题描述】:
当我将鼠标悬停在图像上时,缩略图会显示在我不想要的图像的底部。如何删除?来自漂亮照片。
jquery.prettyPhoto.js
【问题讨论】:
-
请提出具体问题并提供合适的代码或工作演示
标签: jquery prettyphoto
当我将鼠标悬停在图像上时,缩略图会显示在我不想要的图像的底部。如何删除?来自漂亮照片。
jquery.prettyPhoto.js
【问题讨论】:
标签: jquery prettyphoto
也许你可以在你的配置中为 prettyPhoto 设置以下内容:
'overlay_gallery': true
【讨论】:
你只是改变....选择
pp_gallery{display:none !important;left:50%;margin-top:-50px;position:absolute;z-index:10000}
在 prettyphoto.css 中改为
.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}
【讨论】: