我正在使用關於此問題的提示Overlay thumbnail with remove image button?以獲取疊加懸停刪除圖標以顯示在我的頁面上的縮略圖。獲取fancybox和懸停刪除圖標在同一圖像上工作
但我也使用fancybox,我似乎無法同時工作。因爲他們都需要<a>
元素。
現在,這是我的代碼。
<div class="image-thumb" style="display: inline-block; background-image: url('<?php echo base_url().$path.$thumb; ?>');" align="center">
<a class="fancybox" href="<?php echo base_url().$path.$file->filename; ?>" rel="galery1" title="<?php echo $file->description; ?>">
</a><br>
<?php echo $file->description; ?></strong>
</div>
的CSS:
.image-thumb {
position: relative;
width: 150px;
height: 150px;
/* apply background-image url inline on the element since it is part of the content */
background: transparent url() no-repeat center center;
}
.image-thumb a {
display: none;
position: absolute;
top: 2px; /* position in bottom right corner, assuming image is 16x16 */
left: 126px;
width: 22px;
height: 22px;
background: transparent url('/path/to/remove-icon.gif') no-repeat 0 0;
}
.image-thumb:hover a {
display: block;
}
在<a>
元素,如果我的班級設置的fancybox,它的工作原理,如果我刪除它,懸停圖標的作品。出於想法讓他們工作。任何幫助都會很棒。
你能後的CSS代碼? –