css实现三维卡片轮换轮播效果代码

代码语言:html

所属分类:幻灯片

代码描述:css实现三维卡片轮换轮播效果代码

代码标签: 卡片 轮换 轮播 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

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

<head>

    <meta charset="UTF-8">

    <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bootstrap.4.3.1.min.css">
    <style>
        .icon-cards {
            position: relative;
            width: 60vw;
            height: 40vw;
            max-width: 380px;
            max-height: 250px;
            margin: 0;
            color: white;
            perspective: 1000px;
            transform-origin: center;
        }
        .icon-cards__content {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-origin: center;
            transform-style: preserve-3d;
            transform: translateZ(-30vw) rotateY(0);
            -webkit-animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
            animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
        }
        .icon-cards__content.step-animation {
            -webkit-animation: carousel 8s infinite steps(1) forwards;
            animation: carousel 8s infinite steps(1) forwards;
        }
        .icon-cards__item {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 60vw;
            height: 40vw;
            max-width: 380px;
            max-height: 250px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 6px;
            transform-origin: center;
        }
        .icon-cards__item:nth-child(1) {
            background: #FDD94F;
            transform: rotateY(0) translateZ(35vw);
        }
        .icon-cards__item:nth-child(2) {
            background: #F87949;
            transform: rotateY(120deg) translateZ(35vw);
        }
        .icon-cards__item:nth-child(3) {
            background: #FBAB48;
            transform: rotateY(240deg) translateZ(35vw);
        }

@-webkit-keyframes carousel {
            0%, 17.5% {
                transform: translateZ(-35vw) rotateY(0);
            }
            27.5%, 45% {
                transform: translateZ(-35vw) rotateY(-120deg);
            }
            55%, 72.5% {
                transform: translateZ(-35vw) rotateY(-240deg);
            }
            82.5%, 100% {
                transform: translateZ(-35vw) rotateY(-360deg);
            }
        }

@keyframes carousel {
            0%, 17.5% {
                transform: translateZ(-35vw) rotateY(0);
            }
            27.5%, 45% {
                transform: translateZ(-35vw) rotateY(-120deg);
            }
            55%, 72.5% {
                transform: translateZ(-35vw) rotateY(-240deg);
            }
            82.5%, 100% {
                transform: translateZ(-35vw) rotateY(-360deg);
            }
        }
        html,
        body {
            height: 100%;
        }

        body {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: #110F15;
        }

        .checkbox {
            position: relative;
            margin-top: 2rem;
            font-size: 0.9rem;
            font-weight: bold;
            text-transform: uppercase;
            color: #F47956;
            transition: color 0.3s ease;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        .checkbox:hover {
            color: #F7A95A;
        }
        .checkbox__checkbox {
            position: relative;
            top: 0;
            width: 1.0625rem;
            height: 1.0625rem;
            background: white;
            border: 1px solid curren.........完整代码请登录后点击上方下载按钮下载查看

网友评论0