0
我使用燈箱插件使用rel =「lightbox」來激發我使用高級自定義字段plugin創建的庫中的燈箱。所有的作品很好,直到我想添加一個絕對定位在盒子div中的子div。它應該改變懸停的不透明度,仍然有燈火。爲什麼燈箱不工作時,div有一個孩子div
我的標記
<?php if(get_field('image')):
$attachment_id = get_field('image');
$size = "full";
$image = wp_get_attachment_image_src($attachment_id, $size);
$alt = get_post_meta($attachment->ID, '_wp_attachment_image_alt', true);
$image_title = $attachment->post_title;
$caption = $attachment->post_excerpt;
?>
<a href="<?php echo $image[0]; ?>" rel="lightbox"><?php echo wp_get_attachment_image($attachment_id, medium); ?> </a>
<div class="hover-title">
<?php the_field('hover_title');?>
</div><!-- hover title -->
<?php endif; ?>
</div><!-- box -->
如果我只是刪除 「懸停標題」 收藏的作品。但我想用:) :)
我的css: .box a { margin:5px; float:left; 位置:相對; 溢出:隱藏; 不透明度:1; display:block; }