html - 纯 css3 图像 slider

标签 html css

我需要使用纯 css3 而不是使用任何 jquery 制作图像 slider 。我刚试过这个

    #content-slider {
    font-family: arial;
    width: 640px;
    margin: 0 auto;
    margin-top: 10px;
}

#content {
    overflow: hidden;
    width: 640px;
    height: 480px;
    -webkit-box-shadow: 0px 0px 50px 10px #c9c9c9;
    -moz-box-shadow: 0px 0px 50px 10px #c9c9c9;
    box-shadow: 0px 0px 50px 10px #c9c9c9;
}

#content-inner {
    width:10000px;
    height: 480px;
}

.page {
    width: 640px;
    height: 480px;
    float: left;
}

.page-info {
    height: 90px;
    background-color: rgba(99, 99, 99, 0.6);
    position: relative;
    margin-top: 0px;
    bottom: 103px;
    color: #dedede;
    padding-left: 20px;
    padding-top: 10px;
}

.page-info h2 {
    font-size: 21px;
    margin-bottom: 10px;
    margin-top: 0px;
    color: #fafafa;
}

.page-text {
    font-size: 15px;
}

.button {
    float: left;
    background: #bababa;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-top:10px;
    margin-left: 5px;
    margin-right: 5px;
}

.button:hover {
    -webkit-box-shadow: inset 0px 0px 2px 2px #d4d4d4;
    -moz-box-shadow: inset 0px 0px 2px 2px #d4d4d4;
    box-shadow: inset 0px 0px 2px 2px #d4d4d4;
}

.button:active {
    -webkit-box-shadow: inset 0px 0px 2px 2px #7a7a7a;
    -moz-box-shadow: inset 0px 0px 2px 2px #7a7a7a;
    box-shadow: inset 0px 0px 2px 2px #7a7a7a;
}

.button a {
    display: block;
    width: 16px;
    height: 16px;
}

#content-inner-1:target #content-inner {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-left: 0px;
}

#content-inner-2:target #content-inner {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-left: -640px;
}

#content-inner-3:target #content-inner {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-left: -1280px;
}

#content-inner-4:target #content-inner {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-left: -1920px;
}

#content-inner-5:target #content-inner {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-left: -2560px;
}

#content-inner-6:target #content-inner {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-left: -3200px;
}

但它需要点击(请检查我的 jsfiddle this )。我想像 this 一样自动从右向左滑动地点。有人可以帮助我吗?

抱歉我的英语不好。谢谢。

最佳答案

我建议你结合Infinite Image slider with pure CSS3 (用于多个图像之间的自动延迟/转换)与此 How to create 'Slide-in gallery panels' with jQuery/CSS3? (对于滑动部分)。

如果您需要更多详细信息,请告诉我。

关于html - 纯 css3 图像 slider ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20603175/

相关文章:

html - 选项卡式内容边框不会显示

html - 使切换菜单按钮变粘

html - 拆分长标题属性值

html - 修复导航栏中链接的垂直对齐

javascript - 在 Javascript 函数中组织 HTML

jquery - Chrome 中可调整大小的 Div 在缩放时导致内容偏移

asp.net - 拖动控制 Flash 电影问题?

html - 不均匀的 CSS 变换动画

css - 如何在 css 中包含 .otf?

javascript - 如何使用 jquery/javascript 动态更改菜单的样式?