猫头鹰旋转木马切割div

时间:2016-04-14 21:05:17

标签: jquery css owl-carousel

我有点问题。我使用OwlCarousel 2来制作'推荐旋转器/滑块',但看起来像这样: enter image description here

但我需要这样的想法 - 图像在顶部切​​割: enter image description here

我打包'盒子'在另一个div中,但它没有解决它。
这是我的HTML:

<div>
    <div class="testimonial-box">
        <div class="testimonial-content">
            <div class="testimonial-logo">
                <img src="http://placehold.it/100x100" alt="" class="img-responsive img-thumbnail pull-left" />
            </div>
            <p>
                <!-- CONTENT -->
            </p>
            <div class="testimonial-meta">
                <p>
                    <h5>Lorem Ipsum</h5>
                    <span>, <i>Web Developer</i></span>
                </p>
                <p class="website">
                    <a href="http://vrs-factory.pl">VRS-Factory</a>
                </p>
            </div>
        </div>
    </div>
</div>

CSS [SASS]:

section.testimonials {
        padding: 30px 0;

        .testimonial-logo {
            img {
                margin-top: -88px;
            }
        }

        .testimonial-content {
            border: 1px solid rgba( $SecondColor, .2 );
            border-radius: 3px;
            padding: 20px;
        }

        .testimonial-meta {
            h5 {
                display: inline-block;
                margin-bottom: 0;
            }
        }

        .owl-carousel {
            .owl-item {
                img {
                    width: auto;
                }
            }
        }
    }

更新 这是演示:DEMO

1 个答案:

答案 0 :(得分:0)

这是因为overflow: hidden的{​​{1}}。

我在.owl-carousel .owl-stage-outer上添加margin-top来修复它。

.owl-item

Live example