【发布时间】:2017-03-10 12:01:34
【问题描述】:
亲爱的开发者你好,
我在对我的帖子网格进行编码时遇到了问题。我想在悬停时模糊背景图像。但我的文字(在同一个 div 中也很模糊)。您对此有解决方案吗?或者没有其他方法,不在容器中的新 div 中使用此图片。想保留它作为背景图片
帖子php:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="article" style="background-image: url(<?php echo the_post_thumbnail_url(); ?>);" onclick="self.location.href='<?php echo get_permalink( $leavename = false ); ?>'">
<div class="post_info">
<span class="post_cat"><?php the_category(' ') ?></span>
<h2 class="post_title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<span class="post_date"><?php the_time('d.m.Y') ?></span>
</div>
<!-- .article --></div>
CSS:
.article:hover {
-webkit-filter: blur(2px);
}
.article {
margin-top: 15px;
position: relative;
height: 229px;
margin-left: 15px;
margin-right: 15px;
float: left;
width: 25%;
cursor: pointer;
}
感谢你帮助我,ExotiQ
【问题讨论】: