网站推广.NET

网站推广.NET

纯css3实现3D立方体旋转特效代码

来源:互联网

上网易前端微专业课程,里面有一个课外作业是实现一个3D旋转立方体,花了点时间做了下,还有点意思,写个简单教程,供大家学习。 先放上最终要实现的效果 .

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>CSS3 3D立方体多边形动画特效 - 代码笔记</title><style type="text/css">*{ margin:0 auto;    padding:0;}@keyframes rotate{    0%{        transform:rotateX(0deg) rotateY(0deg);    }    100%{        transform:rotateX(360deg) rotateY(360deg);    }}html{    background:linear-gradient(#ff0 0%, #000 80%);    height:100%;}.wrap{    margin-top:200px;    perspective: 1000px; /* 视图距元素的距离 相当于摄像机 */}.cube{    width:200px;    height:200px;    position:relative;    color:#fff;    font-size:36px;    font-weight:bold;    text-align:center;    line-height:200px;    transform-style:preserve-3d; /* 默认flat 2D */    transform:rotateX(-30deg) rotateY(-70deg);     animation:rotate 20s infinite linear; /*播放时间 播放次数为循环 缓动效果为匀速 */}.cube > p{    width:100%;    height:100%;    border:1px solid #fff;    position:absolute;    background-color:#333;    opacity:.6;    transition:transform 0.4s ease-in;}.cube .out-front{    transform: translateZ(100px);}.cube .out-back{    transform: translateZ(-100px) rotateY(180deg);}.cube .out-left{    transform: translateX(-100px) rotateY(-90deg);}.cube .out-right{     transform: translateX(100px) rotateY(90deg);}.cube .out-top{    transform: translateY(-100px) rotateX(90deg);}.cube .out-bottom{    transform: translateY(100px) rotateX(-90deg);}.cube > span{    display:block;    width:100px;    height:100px;    border:1px solid black;    background-color:#999;    position:absolute;    top:50px;    left:50px;}.cube .in-front{    transform: translateZ(50px);}.cube .in-back{    transform: translateZ(-50px) rotateY(180deg);}.cube .in-left{    transform: translateX(-50px) rotateY(-90deg);}.cube .in-right{    transform: translateX(50px) rotateY(90deg);}.cube .in-top{    transform: translateY(-50px) rotateX(90deg);}.cube .in-bottom{    transform: translateY(50px) rotateX(-90deg);}.wrap:hover .out-front{    transform: translateZ(200px);}.wrap:hover .out-back{    transform: translateZ(-200px) rotateY(180deg);}.wrap:hover .out-left{    transform: translateX(-200px) rotateY(-90deg);}.wrap:hover .out-right{    transform: translateX(200px) rotateY(90deg);}.wrap:hover .out-top{    transform: translateY(-200px) rotateX(90deg);}.wrap:hover .out-bottom{    transform: translateY(200px) rotateX(-90deg);} </style></head><body><p class="wrap">    <p class="cube">        <p class="out-front">前面</p>        <p class="out-back">后面</p>        <p class="out-left">左面</p>        <p class="out-right">右面</p>         <p class="out-top">上面</p>        <p class="out-bottom">下面</p>         <span class="in-front"></span>        <span class="in-back"></span>        <span class="in-left"></span>        <span class="in-right"></span>        <span class="in-top"></span>        <span class="in-bottom"></span>    </p></p> <p style="text-align:center;margin:50px 0; font:normal 14px/24px &#39;MicroSoft YaHei&#39;;"><p>适用浏览器:360、firefox、chrome、opera、傲游、搜狗、世界之窗. 不支持safari、ie8及以下浏览器。</p></p></body></html>

【相关推荐】

1. 特别推荐:“php程序员工具箱”V0.1版本下载

2. 免费css在线视频教程

3. php.cn独孤九贱(2)-css视频教程

立即学习“前端免费学习笔记(深入)”;

html3d旋转立方体