按下右側的「點擊預覽」按鈕在當前頁面預覽,點擊連接全屏預覽。css
https://codepen.io/zhang-ou/full/MGeRROhtml
此視頻是能夠交互的,你能夠隨時暫停視頻,編輯視頻中的代碼。git
請用 chrome, safari, edge 打開觀看。github
https://scrimba.com/c/cdKMBTkchrome
請從 github 下載。dom
在 dom 中定義一個容器:動畫
<div class="box">BUTTON</div>
容器居中顯示:spa
html, body { height: 100%; display: flex; align-items: center; justify-content: center; background-color: skyblue; }
設置按鈕的 2d 樣式,爲了便於調整按鈕尺寸,使用了變量:3d
.box { background: linear-gradient(to right, gold, darkorange); color: white; --width: 250px; --height: calc(var(--width) / 3); width: var(--width); height: var(--height); text-align: center; line-height: var(--height); font-size: calc(var(--height) / 2.5); font-family: sans-serif; letter-spacing: 0.2em; border: 1px solid darkgoldenrod; border-radius: 2em; }
設置按鈕的 3d 樣式:
.box { transform: perspective(500px) rotateY(-15deg); text-shadow: 6px 3px 2px rgba(0, 0, 0, 0.2); box-shadow: 2px 0 0 5px rgba(0, 0, 0, 0.2); }
定義按鈕的鼠標劃過動畫效果:
.box:hover { transform: perspective(500px) rotateY(15deg); text-shadow: -6px 3px 2px rgba(0, 0, 0, 0.2); box-shadow: -2px 0 0 5px rgba(0, 0, 0, 0.2); } .box { transition: 0.5s; }
用僞元素增長光澤:
.box { position: relative; } .box::before { content: ''; position: absolute; width: 100%; height: 100%; background: linear-gradient(to right, transparent, white, transparent); left: 0; }
定義光澤動畫效果:
.box::before { left: -100%; transition: 0.5s; } .box:hover::before { left: 100%; }
最後,隱藏容器以外的內容:
.box { overflow: hidden; }
大功告成!