第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

前端每日實(shí)戰(zhàn):106# 視頻演示如何用純 CSS 創(chuàng)作一個(gè)沒(méi)有 DOM 元素的動(dòng)畫

標(biāo)簽:
Html/CSS Html5

效果预览

按下右侧的“点击预览”按钮可以在当前页面预览,点击链接可以全屏预览。

https://codepen.io/comehope/pen/JBqjqm

点击预览


可交互视频

此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。

请用 chrome, safari, edge 打开观看。

https://scrimba.com/p/pEgDAM/cD3KwTw

源代码下载

每日前端实战系列的全部源代码请从 github 下载:

https://github.com/comehope/front-end-daily-challenges

代码解读

没有 dom 元素,直接写 css。
设置页面空间:

body {     position: fixed;     margin: 0;     width: 100vw;     height: 100vh; }

用伪元素设置背景图案:

body::before {     content: '';     position: fixed;     width: 200vmax;     height: 200vmax;     background-color: steelblue;     color: turquoise;     background-image:          linear-gradient(             45deg,              currentColor 25%,              transparent 25%, transparent 75%,              currentColor 75%),         linear-gradient(             45deg,              currentColor 25%,              transparent 25%, transparent 75%,              currentColor 75%);     background-position: 0 0, 5vmax 5vmax;     background-size: 10vmax 10vmax;

平移背景图案:

body::before {     top: 50%;     left: 50%;     animation:          9s move infinite ease-in-out alternate; } @keyframes move {     from {         left: -40%;         top: -40%;     }     to {         left: -60%;         top: -60%;     } }

让背景图案转动起来:

body::before {     animation:          9s move infinite ease-in-out alternate,         9s -1.5s rotating infinite ease-in-out alternate; } @keyframes rotating {     to {         transform: rotate(180deg);     } }

平移页面:

body {     top: 50%;     left: 50%;     animation:          3s move infinite ease-in-out alternate; }

缩放页面:

body {     animation:          3s move infinite ease-in-out alternate,         3s zoom infinite ease-in-out alternate; } @keyframes zoom {     to {         transform: scale(10);     } }

最后,增加变色效果:

@keyframes rotating {     to {         transform: rotate(180deg);         filter: hue-rotate(1turn);     } }

大功告成!

原文链接:https://segmentfault.com/a/1190000016013632

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺(jué)得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評(píng)論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評(píng)論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說(shuō)多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開(kāi)微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊(cè)有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消