課程
/前端開發
/CSS3
/CSS3 3D 特效
完全照抄你的,都實現不出來3D效果
2016-10-28
源自:CSS3 3D 特效 3-2
正在回答
.box{
? ? ? ? ? ? height:100px;
? ? ? ? ? ? width:100px;
? ? ? ? ? ? background:red;
? ? ? ? ? ? margin:50px auto;
? ? ? ? ? ? animation: move 1s infinite;
? ? ? ? }
? ? ? ? @keyframes move{
? ? ? ? ? ? 0%{transform:rotate(0deg);}
? ? ? ? ? ? 100%{transform:rotate(720deg);}
自己剛寫的
舉報
使用CSS3當中的屬性,創建真實可用的三維效果
2 回答css 3d效果ie也能實現嗎
1 回答CSS3 3D效果
1 回答沒有3D效果!
2 回答為什么我的看不出3D效果啊
1 回答出不來效果
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2016-11-09
.box{
? ? ? ? ? ? height:100px;
? ? ? ? ? ? width:100px;
? ? ? ? ? ? background:red;
? ? ? ? ? ? margin:50px auto;
? ? ? ? ? ? animation: move 1s infinite;
? ? ? ? }
? ? ? ? @keyframes move{
? ? ? ? ? ? 0%{transform:rotate(0deg);}
? ? ? ? ? ? 100%{transform:rotate(720deg);}
? ? ? ? }
自己剛寫的