炫酷CSS3垂直时间轴特效

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
    <title>Document</title>
    <style>
        .main-timeline {
            overflow: hidden;
            position: relative;
        }

        .main-timeline .timeline {
            position: relative;
            margin-top: -79px;
        }

        .main-timeline .timeline:first-child {
            margin-top: 0;
        }

        .main-timeline .timeline:before,
        .main-timeline .timeline:after {
            content: "";
            display: block;
            width: 100%;
            clear: both;
        }

        .main-timeline .timeline:before {
            content: "";
            width: 100%;
            height: 100%;
            box-shadow: -8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 2;
        }

        .main-timeline .timeline-icon {
            width: 210px;
            height: 210px;
            border-radius: 50%;
            border: 25px solid transparent;
            border-top-color: #f44556;
            border-right-color: #f44556;
            margin: auto;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            z-index: 1;
            transform: rotate(45deg);
        }

        .main-timeline .year {
            display: block;
            width: 110px;
            height: 110px;
            line-height: 110px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
            margin: auto;
            font-size: 30px;
            font-weight: bold;
            color: #f44556;
            text-align: center;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            transform: rotate(-45deg);
        }

        .main-timeline .timeline-content {
            width: 35%;
            float: right;
            background: #f44556;
            padding: 30px 20px;
            margin: 50px 0;
            z-index: 1;
            position: relative;
        }

        .main-timeline .timeline-content:before {
            content: "";
            width: 20%;
            height: 15px;
            background: #f44556;
            position: absolute;
            top: 50%;
            left: -20%;
            z-index: -1;
            transform: translateY(-50%);
        }

        .main-timeline .title {
            font-size: 20px;
            font-weight: bold;
            color: #fff;
            margin: 0 0 10px 0;
        }

        .main-timeline .description {
            font-size: 16px;
            color: #fff;
            line-height: 24px;
            margin: 0;
        }

        .main-timeline .timeline:nth-child(2n):before {
            box-shadow: 8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
        }

        .main-timeline .timeline:nth-child(2n) .timeline-icon {
            transform: rotate(-135deg);
        }

        .main-timeline .timeline:nth-child(2n) .year {
            transform: rotate(135deg);
        }

        .main-timeline .timeline:nth-child(2n) .timeline-content {
            float: left;
        }

        .main-timeline .timeline:nth-child(2n) .timeline-content:before {
            left: auto;
            right: -20%;
        }

        .main-timeline .timeline:nth-child(2n) .timeline-icon {
            border-top-color: #e97e2e;
            border-right-color: #e97e2e;
        }

        .main-timeline .timeline:nth-child(2n) .year {
            color: #e97e2e;
        }

        .main-timeline .timeline:nth-child(2n) .timeline-content,
        .main-timeline .timeline:nth-child(2n) .timeline-content:before {
            background: #e97e2e;
        }

        .main-timeline .timeline:nth-child(3n) .timeline-icon {
            border-top-color: #13afae;
            border-right-color: #13afae;
        }

        .main-timeline .timeline:nth-child(3n) .year {
            color: #13afae;
        }

        .main-timeline .timeline:nth-child(3n) .timeline-content,
        .main-timeline .timeline:nth-child(3n) .timeline-content:before {
            background: #13afae;
        }

        .main-timeline .timeline:nth-child(4n) .timeline-icon {
            border-top-color: #105572;
            border-right-color: #105572;
        }

        .main-timeline .timeline:nth-child(4n) .year {
            color: #105572;
        }

        .main-timeline .timeline:nth-child(4n) .timeline-content,
        .main-timeline .timeline:nth-child(4n) .timeline-content:before {
            background: #105572;
        }

        @media only screen and (max-width: 1199px) {
            .main-timeline .timeline {
                margin-top: -103px;
            }

            .main-timeline .timeline-content:before {
                left: -18%;
            }

            .main-timeline .timeline:nth-child(2n) .timeline-content:before {
                right: -18%;
            }
        }

        @media only screen and (max-width: 990px) {
            .main-timeline .timeline {
                margin-top: -127px;
            }

            .main-timeline .timeline-content:before {
                left: -2%;
            }

            .main-timeline .timeline:nth-child(2n) .timeline-content:before {
                right: -2%;
            }
        }

        @media only screen and (max-width: 767px) {
            .main-timeline .timeline {
                margin-top: 0;
                overflow: hidden;
            }

            .main-timeline .timeline:before,
            .main-timeline .timeline:nth-child(2n):before {
                box-shadow: none;
            }

            .main-timeline .timeline-icon,
            .main-timeline .timeline:nth-child(2n) .timeline-icon {
                margin-top: -30px;
                margin-bottom: 20px;
                position: relative;
                transform: rotate(135deg);
            }

            .main-timeline .year,
            .main-timeline .timeline:nth-child(2n) .year {
                transform: rotate(-135deg);
            }

            .main-timeline .timeline-content,
            .main-timeline .timeline:nth-child(2n) .timeline-content {
                width: 100%;
                float: none;
                border-radius: 0 0 20px 20px;
                text-align: center;
                padding: 25px 20px;
                margin: 0 auto;
            }

            .main-timeline .timeline-content:before,
            .main-timeline .timeline:nth-child(2n) .timeline-content:before {
                width: 15px;
                height: 25px;
                position: absolute;
                top: -22px;
                left: 50%;
                z-index: -1;
                transform: translate(-50%, 0);
            }
        }
    </style>
</head>

<body>
    <div class="demo">
        <div class="container">
            <div class="row">
                <div class="col-md-12">
                    <div class="main-timeline">
                        <div class="timeline">
                            <div class="timeline-icon"><span class="year">2018</span></div>
                            <div class="timeline-content">
                                <h3 class="title">Web Desginer</h3>
                                <p class="description">
                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lacinia mi ultrices,
                                    luctus nunc ut, commodo enim. Vivamus sem erat.
                                </p>
                            </div>
                        </div>
                        <div class="timeline">
                            <div class="timeline-icon"><span class="year">2017</span></div>
                            <div class="timeline-content">
                                <h3 class="title">Web Developer</h3>
                                <p class="description">
                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lacinia mi ultrices,
                                    luctus nunc ut, commodo enim. Vivamus sem erat.
                                </p>
                            </div>
                        </div>
                        <div class="timeline">
                            <div class="timeline-icon"><span class="year">2016</span></div>
                            <div class="timeline-content">
                                <h3 class="title">Web Desginer</h3>
                                <p class="description">
                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lacinia mi ultrices,
                                    luctus nunc ut, commodo enim. Vivamus sem erat.
                                </p>
                            </div>
                        </div>
                        <div class="timeline">
                            <div class="timeline-icon"><span class="year">2015</span></div>
                            <div class="timeline-content">
                                <h3 class="title">Web Developer</h3>
                                <p class="description">
                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lacinia mi ultrices,
                                    luctus nunc ut, commodo enim. Vivamus sem erat.
                                </p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</body>

</html>

效果:移动和PC端

内容来源于链接https://www.toutiao.com/i6738373341314286088/

原文地址:https://www.cnblogs.com/lwming/p/11576010.html

时间: 2024-09-30 19:43:43

炫酷CSS3垂直时间轴特效的相关文章

10大炫酷的HTML5文字动画特效欣赏

文字是网页中最基本的元素,在CSS2.0时代,我们只能在网页上展示静态的文字,只能改变他的大小和颜色,显得枯燥无味.随着HTML5的发展,现在网页中的文字样式变得越来越丰富了,甚至出现了文字动画,HTML5和CSS3的强大之处就在于此.本文分享的10款炫酷的HTML5文字动画特效非常不错,一起来看看吧. 1.HTML5 Canvas粒子效果文字动画特效 之前我们分享过很多超酷的文字特效,其中也有利用HTML5和CSS3的.今天我们要来分享一款基于HTML5 Canvas的文字特效,输入框中输入想

html5跟随鼠标炫酷网站引导页动画特效

html5跟随鼠标炫酷网站引导页动画特效一款非常不错的引导页,文字效果渐变,鼠标跟随出绚丽的条纹.html5炫酷网站引导页,鼠标跟随出特效. 体验效果:http://hovertree.com/texiao/html5/ 效果图: 以下是源代码: 1 <!DOCTYPE html> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Co

jQuery和CSS3超炫3D整屏垂直滚动页面特效

这是一款使用jQuery和CSS3制作的效果超炫的3D整屏垂直滚动页面特效.该页面滚动特效在用户滚动鼠标或点击右侧的导航圆点按钮时,当前页面会3D倾斜缩小,下一个页面会逐渐放大并占满整个屏幕,效果非常酷. 效果演示:http://www.htmleaf.com/Demo/201506132028.html 下载地址:http://www.htmleaf.com/jQuery/Layout-Interface/201506132027.html

3种炫酷CSS3复选框checkbox动画特效

这是一款效果非常炫酷的CSS3复选框checkbox动画特效.这组复选框动画特效共3种效果,它们都是在原生checkbox元素的基础上进行了美化,在用户点击复选框的时候制作出非常酷的动画效果. 在线预览   源码下载 使用方法 HTML结构 普通的HTML checkbox复选框控件的样式非常的平淡.在现代网页设计中,我们可以通过CSS3来为它设置更加漂亮的外观和动画特效.通过CSS的@keyframe属性,我们就可以制作出各种神奇的复选框动画特效. 在这些复选框动画的DEMO中,使用的都是无序

jQuery和CSS3炫酷全屏滑动菜单特效

这是一款效果非常炫酷的jQuery和CSS3全屏推拉式滑动菜单特效插件.这个插件的效果是当点击了主菜单按钮时,全屏菜单从屏幕左侧滑出,主菜单按钮动态旋转更换图标. 下图演示了这个效果的过程: 在线演示:http://www.htmleaf.com/Demo/201502131375.html 下载地址:http://www.htmleaf.com/jQuery/Menu-Navigation/201502131374.html

基于HTML5 SVG和CSS3炫酷蹦床式图片切换特效

今天给大家分享一款效果非常炫酷的HTML5 SVG和CSS3蹦床式图片切换特效插件.该图片切换插件在进行图片切换时,整个屏幕就像一张大蹦床一样,将图片弹射出去,切换到另一张图片,效果非常有创意.效果图如下: 在线预览   源码下载 HTML结构 该图片切换特效的HTML结构中,第一个元素是SVG图形,当切换图片时,它将从一个规则的矩形变为一个被压缩的矩形. <div class="stack"> <ul id="elasticstack" clas

20种炫酷CSS3按钮鼠标滑过特效

这是一款集合20组不同CSS3按钮样式和按钮鼠标滑过特效的插件.这20组css3按钮每一组都有3种示例,每一个示例都使用CSS3制作炫酷的鼠标滑过动画.这些按钮适用于各种场合,相信总有一款适合你. 请注意这些按钮动画效果只在最新版本的现代浏览器上工作,(Mobile)Safari浏览器只支持其中很少的效果. 该按钮动画特效中大多数使用的是CSS transitions,但有一些动画效果也使用CSS animations来完成. 在线演示:http://www.htmleaf.com/Demo/2

纯CSS3炫酷3D折叠面板动画特效

这是一款效果非常炫酷的CSS3 3D折叠面板动画特效.该折叠面板特效当鼠标移动到图片上时,一个面板会以3d折叠的方式在顶部展开,并显示图片的标题等信息..这个效果使用3D CSS animations 来制作折叠面板的动画,纯CSS,没有使用javascript. 在线演示:http://www.htmleaf.com/Demo/201501251276.html 下载地址:http://www.htmleaf.com/css3/css3donghua/201501251275.html

jQuery炫酷3d背景视觉差特效

Smart3D是一款效果非常炫酷的jQuery图片背景视觉差特效插件.该插件将图片以层的形式排放,当鼠标滑过图片的时候,每一层的图片的运动速度各不相同,从而形成强烈的视觉差效果. 效果演示:http://www.htmleaf.com/Demo/201504051628.html 下载地址:http://www.htmleaf.com/jQuery/shijuecha/201504051627.html