99资源 在线视频|美女人妻自慰淫叫|日韩欧美乱伦电影|超碰按摩国产超碰|av全球免费不卡|加勒比无码一区人妻|国产高清一区视频高清|一区二区三区精品伊人|无码加勒比人妻高清|久草中文在线一区蜜乳

CSS 3D 基礎(chǔ)知識

2017/2/11 8:32:47   閱讀:1695    發(fā)布者:1695

css3d 總結(jié)

3d transform (3D變形)(rotate skew scale translate)

基礎(chǔ)知識

perspective (視距,景深) perspective-origin (視點)
transfrom

(1) 坐標 x y z

(2) 變形 基點位置 transform-origin
(3)transfrom-style:preserve-3d

3D旋轉(zhuǎn)圖片相冊

3d transform (3D變形)(rotate skew scale translate)

基礎(chǔ)知識

perspective (視距,景深) perspective-origin (視點)
transfrom

(1) 坐標 x y z

(2) 變形 基點位置 transform-origin
(3)transfrom-style:preserve-3d

3D旋轉(zhuǎn)圖片相冊


它就用到了一個比較簡單的坐標y 軸旋轉(zhuǎn)那咱們看一下他的代碼

html的代碼:
	

首先要建九個盒子放九張圖片,這個很容易理解的。

css的代碼
body{ background: #6daf39;(背景加了個顏色 主要是好看) } .xj{ perspective:600px;(這是井深) } .kj{ transition: 1s;(運動時間) transform-style:preserve-3d;(實現(xiàn)3d效果 當然這是非常重的) width:200px; height: 300px; margin:80px auto; position: relative; transform: rotateY(0deg) rotateX(0deg) translateZ(-275px); transform-origin: center center -275px; } .mian{ position:absolute; font-size: 50px; color:#fff; text-align: center; line-height: 300px; } .mian:nth-child(1){ width:200px; height: 300px; background: #ff2223; transform: rotateY(0deg)translateZ(275px); } .mian:nth-child(2){ width:200px; height: 300px; background: #ff2223; transform: rotateY(40deg)translateZ(275px); } .mian:nth-child(3){ width:200px; height: 300px; background: #ff2223; transform: rotateY(80deg)translateZ(275px); } .mian:nth-child(4){ width:200px; height: 300px; background: #ff2223; transform: rotateY(120deg)translateZ(275px); } .mian:nth-child(5){ width:200px; height: 300px; background: #ff2223; transform: rotateY(160deg)translateZ(275px); } .mian:nth-child(6){ width:200px; height: 300px; background: #ff2223; transform: rotateY(200deg)translateZ(275px); } .mian:nth-child(7){ width:200px; height: 300px; background: #ff2223; transform: rotateY(240deg)translateZ(275px); } .mian:nth-child(8){ width:200px; height: 300px; background: #ff2223; transform: rotateY(280deg)translateZ(275px); } .mian:nth-child(9){ width:200px; height: 300px; background: #ff2223; transform: rotateY(320deg)translateZ(275px); }

css就到這里,很簡單的;

js的代碼
kj.onclick=function () { 
      cishu++; 
      var jiaodu=40*cishu; 


      kj.style.transform="rotateY("+jiaodu+"deg)translateZ(-275px)" 
    }

(kj)就是3d空間,點擊kj要是一種效果,就要有一種方法或步驟;
3d空間樣式rotateY(這就是上下軸旋轉(zhuǎn))translateZ(Z這就是3d立體字軸;
讓3d空間后移275px找到軸心位置)

完畢 希望大家看到這篇文章后能夠?qū)W到知識。