我怎样才能使这个仅限CSS的旋转木马默认显示第一张幻灯片?

时间:2015-01-26 23:50:31

标签: html css css3 carousel

我有一个仅限CSS的旋转木马(这非常好!),唯一的问题是默认情况下没有选择第一张幻灯片。

如何在不使用JavaScript的情况下实现这一目标?

<div class="carousel">
    <div class="item red slide-in" id="item1"><h1>Item 1</h1></div>
    <div class="item green slide-in" id="item2"><h1>Item 2</h1></div>
    <div class="item yellow slide-in" id="item3"><h1>Item 3</h1></div>
    <div class="item red slide-in" id="item4"><h1>Item 4</h1></div>
    <div class="controls">
        <a href="#item1" class="btn">•</a>
        <a href="#item2" class="btn">•</a>
        <a href="#item3" class="btn">•</a>
        <a href="#item4" class="btn">•</a>
    </div>
</div>

核心css:

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel .item {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

/* animations */

.carousel .slide-in {
    -webkit-transform: translate3d(-90%, 0px, 0px);
    -moz-transform: translate3d(-90%, 0px, 0px);
    -ms-transform: translate3d(-90%, 0px, 0px);
    -o-transform: translate(-90%, 0px, 0px);
    transform: translate3d(-90%, 0px, 0px);
    -webkit-transition: -webkit-transform 0.5s ease-out;
    -moz-transition: -moz-transform 0.5s ease-out;
    -ms-transition: -ms-transform 0.5s ease-out;
    -o-transition: -o-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    z-index: 1;
}

.carousel .slide-in:target ~ .slide-in {
    -webkit-transform: translate3d(90%, 0px, 0px);
    -moz-transform: translate3d(90%, 0px, 0px);
    -ms-transform: translate3d(90%, 0px, 0px);
    -o-transform: translate(90%, 0px, 0px);
    transform: translate3d(90%, 0px, 0px);
}

.carousel .slide-in:target,
.carousel .slide-in:focus {
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    z-index: 3;
}

.carousel .slide-in:target + .slide-in {
    z-index: 2;
}

这是旋转木马工作的小提琴:

http://jsfiddle.net/kmturley/fs6wge3f/6/

1 个答案:

答案 0 :(得分:1)

部分工作的一种方法是选择第一个元素(如果它不是目标)。

要选择不是目标的元素,请使用:not(:target)否定它。

要选择第一个元素,只需将其与:first-of-type

组合

Updated Example

.carousel .slide-in:first-of-type:not(:target) {
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    z-index: 3;
}

这种方法的警告是第一个元素似乎不再滑动。


或者,我能想到的另一件事就是拥有一个属性为autofocus="autofocus"的输入元素。由于元素最初将处于焦点,因此通过使用选择器.carousel input[type="checkbox"]:focus + .slide-in设置第一个元素的样式来利用它:

Updated Example

.carousel input[type="checkbox"]:focus + .slide-in,
.carousel .slide-in:target,
.carousel .slide-in:focus {
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    z-index: 3;
}

这种方法的警告是,一旦隐藏的输入元素失去焦点,第一张幻灯片就会移动。