【问题标题】:Simple CSS Image Hover Question简单的 CSS 图像悬停问题
【发布时间】:2011-02-18 14:52:09
【问题描述】:

在我的网站http://www.some-things.net/category/work/实现此代码时遇到问题

http://www.sohtanaka.com/web-design/css-on-hover-image-captions/

谁能看出我哪里出错了? 我已经让它在 coda 中工作了 - 但是当我尝试在 wordpress 中实现它时,出现了问题。

    <div style="clear:both"></div>
        <div class="gallery">
            <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                <div class="portfolioItem">
                        <a href="<?php the_permalink() ?>" title="<?php the_title();?>"><?php the_post_thumbnail(); ?></a>
                <span class="desctitle"><h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
</span> </div>
<?php endwhile; ?>
</div>

这里是 CSS:

    .portfolio {overflow:hidden;}
.gallery {
    margin-top:10px;
    padding-left:22px;
    margin-left:-22px;
    margin-bottom:20px;
    width:982px;
}

/* .portfolioItem {
    float:left;
    width:300px;
    margin-right:25px;
    overflow:hidden;
    margin-bottom:5px;
} */

.portfolioItem {
    float: left;
    overflow: hidden;
    position: relative;
    margin-right: 25px;
    margin-bottom: 5px;
}



.portfolioItem a {
    text-decoration: none;
    float: left;
}
.portfolioItem a:hover {
    cursor: pointer;
}



 /* .portfolioItem img {
    border:2px;
    border-color:000;
    border-style:solid; */
    /* border:none; */
    /* opacity:0.6;filter:alpha(opacity=60);} */


/* .gallery .portfolioItem img:hover {
opacity:1;filter:alpha(opacity=100);}
*/  


.portfolioItem a img {
    float: left;
    margin: 0;
    border: none;

}



/* boxes for portfolio item descriptions */


.portfolioItem a:hover .desctitle {
    display: block;
    font-size: 1.2em;
    padding: 0px 0;
    background: #111;
    filter:alpha(opacity=75);
    opacity:.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; /*--IE 8 Transparency--*/
    color: #fff;
    position: absolute;
    bottom: 0px;
    margin: 0;
    width: 300px;
    border-top: 1px solid #999;

}


/* .desctitle a {
    color:white;
    padding-left:12px;

    }
*/


.portfolioItem a .desctitle {   display: none; }

【问题讨论】:

  • 您能否在您的网站或 wordpress 中的子目录上实现损坏的代码,以便我看看?
  • 它目前在some-things.net/category/work 运行 - 请注意

    中断并且不在 .desctitle 框中?

  • 更新 - 我让它正常工作 - 但是它现在被推到图像下方(必须是它上方的边距或填充?)some-things.net/category/work
  • 嗨 Myles,你能看到当前工作版本的边距在哪里突破吗? some-things.net/category/work

标签: css image hover


【解决方案1】:

原来是格式错误 - / 链接全错了。对于其他有类似问题的人来说,这是正确的代码......

    <div style="clear:both"></div>
        <div class="gallery">
            <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                <div class="portfolioItem">
                        <a href="<?php the_permalink() ?>" class="desctitle" title="<?php the_title();?>"><?php the_post_thumbnail(); ?>
                <span class="desctitle"><?php the_title(); ?></a>
</span>                     

                    </div>

            <?php endwhile; ?>
        </div>

【讨论】:

  • 设法解决了所有问题 - code .portfolioItem a:hover .desctitle { display: block; /* font-size: 1.2em; */ padding: 5px 0 0px 10px; background: #111; filter:alpha(opacity=75); opacity:.75; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; /*--IE 8 Transparency--*/ color: #fff; position: absolute; bottom: 0px; width: 300px; height: 30px; border-top: 1px solid #999; }
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2011-05-25
  • 1970-01-01
  • 1970-01-01
  • 2012-01-11
  • 2020-10-13
  • 2011-11-09
  • 2014-09-23
相关资源
最近更新 更多