1

我正在做一个关于页面。我已将每个人的照片设置为相对定位 div 内的绝对值。绝对定位的 div 包含两张相互叠加的照片,当您悬停时,会出现该人的备用照片。相对定位的 div 还包含人员的姓名和电子邮件。

它也是流动的。因此,我将相对 div 的宽度设置为 100%,并且图像的大小随着浏览器的变化而流畅。我的问题是高度保持不变,我无法让它响应浏览器。我尝试将高度设置为 100%,但这不是诀窍。

任何帮助是极大的赞赏!

这是我的html:

<section class="team clearfix">
<?php
$custom_query = new WP_Query( array( 'post_type' => 'team', 'orderby' => 'title', 'order'         => 'ASC' ));
while($custom_query->have_posts()) : $custom_query->the_post(); ?>
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  <div class="inner">
    <div class="image-container">
     <?php
        $image2 = get_field('alt_photo');
          if( $image2 ): ?>
          <img class="bottom" src="<?php echo $image2['url']; ?>" alt="<?php echo  $image2['alt']; ?>" title="<?php echo $image2['alt']; ?>">

      <?php endif; ?>

      <?php
      $image = get_field('main_photo');
        if( $image ): ?>
          <img class="top" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" title="<?php echo $image['alt']; ?>">

      <?php endif; ?>
      </div>

      <div class="entry-summary">
        <h2 class="entry-title"><?php the_title(); ?></h2>
      <?php
      if(get_field('email')) { ?>
        <a href="mailto:<?php echo get_field('email'); ?>">email</a>
      <?php } ?>
    </div>
    <?php //the_content(); ?>

  </div>
  </article>
  <?php endwhile; ?>

 <?php wp_reset_postdata(); // reset the query ?>
 </section>

&我的CSS:

section.team .image-container {
position: relative;
margin: 0 auto;
width: 100%;
height: 512px;
}

section.team .image-container img{
position: absolute;
left:0;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
}

section.team .image-container img.top:hover{
opacity:0;
}

section.team {
padding: 30px 0;
text-align: center;
padding-left: 10px;
padding-right: 10px;
}

section.team .hentry {
float: left;
position: relative;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
}

section.team .hentry .entry-summary {
min-height: 50px;
}

section.team .hentry .entry-summary .entry-title {
font-family:'Avenir LT W02 95 Black', "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
font-size: .75em; /* 12px */
line-height: 1em; /* 14px */
letter-spacing: .2em;
margin-bottom: 0;
text-transform: uppercase;
}

section.team a {
font-size: 12px;
}
4

1 回答 1

0

你有没有试过max-height?尝试max-height:100%看看这是否也有效,请创建一个 jsfiddle,以便我们更快地为您提供帮助

于 2013-11-06T17:27:55.800 回答