我正在开发一个图像非常重的响应式网站。为了论证,想象一下像 Pinterest 这样的图像网格。在这些图像之上分层的是包含基本元数据(如标题、作者等)的 div,我在缩略图图像中动态垂直居中。
我正在使用 JavaScript 动态计算(因为我不知道某人正在访问网站的视口大小和/或他们是否调整浏览器寡妇的大小)缩略图的高度并将元数据的 div 居中它。
除了一件事之外,这种方法似乎效果很好,我怀疑这是问题所在......?当页面最初加载包含元数据的 div 时,从图像容器的底部开始,然后在图像高度和图像中心由 JavaScript 确定后向上移动。实际上,从用户体验的角度来看,看到这种“打嗝”的发生看起来并不那么好。我想我需要实现某种回调函数或延迟,以便仅在计算图像缩略图高度之后应用应用于元 div 的 CSS。
下面是我的 HTML、CSS 和 JavaScript 的片段,可帮助您了解我的代码发生了什么。如果您需要进一步澄清任何部分,请告诉我:
HTML
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<a href="<?php the_permalink(); ?>">
<div class='meta'>
<p class='title'><?php get_the_title(); ?></p>
<p class='author'><?php get_the_author(); ?></p>
</div>
<?php the_post_thumbnail('main'); ?>
</a>
</article>
CSS(我使用 LESS 以防你看到任何 mixins 或变量)
article {
width: 100%*(390/1174);
display: inline-block;
position: relative;
z-index: 900;
.meta {
width: 100%;
position: absolute;
left: 0;
bottom: 0;
z-index: 500;
font-size: 20px;
line-height: 1em;
text-align: center;
.title {
margin: 0;
padding: 0 16px 8px 16px;
font-size: 1em;
line-height: 1.15em;
font-weight: 700;
}
.author {
.proxima-nova;
color: white;
margin: 0;
font-size: .70em;
line-height: .825em;
}
}
a { display: block; }
}
JavaScript
var article = $('article'),
meta = $('.meta'),
meta_height = meta.height(),
article_height = article.height(),
meta_center = .5 * meta_height,
article_center = .5 * article_height,
center = (article_center - meta_center);
meta.css('bottom', center);
setTimeout(function() {
meta.show();
}, 500);