摘要:效果預覽按下右側的點擊預覽按鈕在當前頁面預覽,點擊鏈接全屏預覽。可交互視頻教程此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。
效果預覽
按下右側的“點擊預覽”按鈕在當前頁面預覽,點擊鏈接全屏預覽。
https://codepen.io/zhang-ou/pen/ELWMLr
可交互視頻教程此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。
請用 chrome, safari, edge 打開觀看。
https://scrimba.com/c/cqrNEsm
源代碼下載請從 github 下載。
https://github.com/comehope/front-end-daily-challenges/tree/master/009-aimed-button-effects
代碼解讀定義 dom,容器中包含 5 個 span,第 1 個是按鈕文字,另 4 個用來修飾:
BUTTON
居中顯示:
html, body { height: 100%; display: flex; align-items: center; justify-content: center; background-color: black; color: silver; }
設置文字樣式:
.box { width: 9em; height: 3em; font-size: 30px; text-align: center; line-height: 3em; letter-spacing: 0.2em; font-family: sans-serif; }
畫出瞄準鏡中間的圓圈:
.box { position: relative; } .box::after { content: ""; position: absolute; width: 3em; height: 3em; border: 1px solid red; border-radius: 50%; left: 3em; }
畫出瞄準鏡的十字坐標線:
.box span:not(:first-child) { position: absolute; background-color: red; } .box span.top, .box span.bottom { width: 1px; height: 3em; left: 50%; } .box span.top { top: -3em; } .box span.bottom { bottom: -3em; } .box span.left, .box span.right { width: 3em; height: 1px; top: 50%; } .box span.left { left: 0; } .box span.right { right: 0; }
定義瞄準動畫:
@keyframes aim { from { filter: opacity(0.2); } to { filter: opacity(0.8); } }
應用瞄準動畫到瞄準鏡上:
.box::after { filter: opacity(0); } .box span:not(:first-child) { filter: opacity(0); } .box:hover::after, .box:hover span:not(:first-child) { animation: aim 1s linear infinite alternate; }
最后,為容器設置從模糊到清晰的緩動效果:
.box { filter: blur(2px); transition: 0.5s; } .box:hover { filter: blur(0.2px); }
大功告成!
知識點:not https://developer.mozilla.org/en-US/docs/Web/CSS/:not
:first-child https://developer.mozilla.org/en-US/docs/Web/CSS/:first-child
filter functions https://developer.mozilla.org/en-US/docs/Web/CSS/filter#Functions
animation-direction https://developer.mozilla.org/en-US/docs/Web/CSS/animation-direction
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/113198.html
摘要:效果預覽按下右側的點擊預覽按鈕在當前頁面預覽,點擊鏈接全屏預覽。可交互視頻教程此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。 showImg(https://segmentfault.com/img/bVbb1Vv?w=500&h=500); 效果預覽 按下右側的點擊預覽按鈕在當前頁面預覽,點擊鏈接全屏預覽。 https://codepen.io/zhang-ou/pen/...
摘要:過往項目年月份項目匯總共個項目年月份發布的項目前端每日實戰專欄每天分解一個前端項目,用視頻記錄編碼過程,再配合詳細的代碼解讀,是學習前端開發的活的參考書頻演示如何用純創作一種按鈕被瞄準的交互特效視頻演示如何用純創作一個同心圓弧旋轉特效視頻演 過往項目 2018 年 4 月份項目匯總(共 8 個項目) 2018 年 5 月份發布的項目 《前端每日實戰》專欄每天分解一個前端項目,用視頻記錄...
摘要:過往項目年月份項目匯總共個項目年月份發布的項目前端每日實戰專欄每天分解一個前端項目,用視頻記錄編碼過程,再配合詳細的代碼解讀,是學習前端開發的活的參考書頻演示如何用純創作一種按鈕被瞄準的交互特效視頻演示如何用純創作一個同心圓弧旋轉特效視頻演 過往項目 2018 年 4 月份項目匯總(共 8 個項目) 2018 年 5 月份發布的項目 《前端每日實戰》專欄每天分解一個前端項目,用視頻記錄...
閱讀 2471·2021-11-24 09:39
閱讀 3517·2019-08-30 15:53
閱讀 594·2019-08-29 15:15
閱讀 2902·2019-08-26 13:23
閱讀 3211·2019-08-26 10:48
閱讀 642·2019-08-26 10:31
閱讀 748·2019-08-26 10:30
閱讀 2358·2019-08-23 18:32