CSS3 3D 特效視頻教程

來源:互聯網
上載者:User
課程介紹:

Transition

1:CSS3中transition

2:CSS3中transition屬性

3:CSS3中transition效果分析

4:CSS3中transition5種效果

練習題

1:建立3D情境

2:建立3D情境

3:實際建立3D情境

4:translate屬性

5:transform屬性

練習題

1:建立3D動畫效果

2:建立3D動畫效果結構部分

3:JS部分

4:練習題

5:編程挑戰


播放地址:http://www.php.cn/course/416.html


講師特點:思路清晰;講解形象;聲音清脆;迴圈漸進。


痛點分析:因為其中使用了很多最新屬性,需要注意瀏覽器的相容問題,注意多換瀏覽器,更改相容性。


課件下載:http://www.php.cn/xiazai/code/2080


html

<!doctype html><html>  <head>    <meta charset="utf-8">    <link href="css.css" rel="stylesheet" type="text/css">    <script src="js.js"></script>  </head>  <body>    <div id="wrapper">      <div id="cube">        <div class="face" id="face1">1</div>        <div class="face" id="face2">2</div>        <div class="face" id="face3">3</div>        <div class="face" id="face4">4</div>        <div class="face" id="face5">5</div>        <div class="face" id="face6">6</div>      </div>    </div>    <div id="op">      <p>rotate x: <span id="deg-x">0</span> deg</p>      <input type="range" min="-360" max="360" id="rotatex" value="0" class="range-control"      oninput="rotate()"/><br/>      <p>rotate y: <span id="deg-y">0</span> deg</p>      <input type="range" min="-360" max="360" id="rotatey" value="0" class="range-control"      oninput="rotate()"/><br/>      <p>rotate z: <span id="deg-z">0</span> deg</p>      <input type="range" min="-360" max="360" id="rotatez" value="0" class="range-control"      oninput="rotate()"/><br/>    </div>  </body></html>


css

#wrapper {  -webkit-perspective: 800;  -webkit-perspective-origin: 50% 50%;}#cube {  width: 200px;  height: 200px;  margin: 100px auto;  -webkit-transform-style: preserve-3d;}.face {  width: 200px;  height: 200px;  position: absolute;  margin: 0 auto;  background-color: rgba(0,0,0,0.5);  font-size: 200px;  text-align: center;  line-height: 200px;  font-weight: 900;  color: #fff;}#face1 {}#face2 {  -webkit-transform-origin: right;  -webkit-transform: rotateY(-90deg);}#face3 {  -webkit-transform-origin: left;  -webkit-transform: rotateY(90deg);}#face4 {  -webkit-transform: translateZ(-200px);}#face5 {  -webkit-transform-origin: top;  -webkit-transform: rotateX(-90deg);}#face6 {  -webkit-transform-origin: bottom;  -webkit-transform: rotateX(90deg);}#op{  margin:0 auto;  font-size:16px;  font-weight:bold;  width:800px;}#op .range-control{width:721px;}


js

function rotate() {   var x = document.getElementById("rotatex").value;   var y = document.getElementById("rotatey").value;   var z = document.getElementById("rotatez").value;    document.getElementById('cube').style.webkitTransform = "rotateX(" + x + "deg) rotateY(" + y + "deg) rotateZ(" + z + "deg)";   document.getElementById('deg-x').innerText = x;   document.getElementById('deg-y').innerText = y;   document.getElementById('deg-z').innerText = z; }
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.