亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css3如何實現簡單的白云飄動背景特效

發布時間:2021-03-17 09:35:12 來源:億速云 閱讀:183 作者:小新 欄目:web開發

小編給大家分享一下css3如何實現簡單的白云飄動背景特效,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

HTML結構

該白云飄動特效的HTML結果非常簡單,使用一個<div>來包裹一組作為白云的<div>元素。

<div id="clouds">
<div class="cloud x1"></div>
<div class="cloud x2"></div>
<div class="cloud x3"></div>
<div class="cloud x4"></div>
<div class="cloud x5"></div>
</div>

CSS樣式

白云使用.cloud 和它的:before和:after偽元素來制作。

.cloud {
width: 200px; height: 60px;
background: #fff;
border-radius: 200px;
-moz-border-radius: 200px;
-webkit-border-radius: 200px;
position: relative;
}
.cloud:before, .cloud:after {
content: '';
position: absolute;
background: #fff;
width: 100px; height: 80px;
position: absolute; top: -15px; left: 10px;
border-radius: 100px;
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
-webkit-transform: rotate(30deg);
transform: rotate(30deg);
-moz-transform: rotate(30deg);
}
.cloud:after {
width: 120px; height: 120px;
top: -55px; left: auto; right: 15px;
}

每一朵白云都執行moveclouds動畫,但是它們的動畫速度各不相同。大小和透明度也各不相同。

.x1 {
-webkit-animation: moveclouds 15s linear infinite;
-moz-animation: moveclouds 15s linear infinite;
-o-animation: moveclouds 15s linear infinite;
}
.x2 {
left: 200px;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
transform: scale(0.6);
opacity: 0.6; /*opacity proportional to the size*/
/*Speed will also be proportional to the size and opacity*/
/*More the speed. Less the time in 's' = seconds*/
-webkit-animation: moveclouds 25s linear infinite;
-moz-animation: moveclouds 25s linear infinite;
-o-animation: moveclouds 25s linear infinite;
}
......
@-webkit-keyframes moveclouds {
0% {margin-left: 1000px;}
100% {margin-left: -1000px;}
}
@-moz-keyframes moveclouds {
0% {margin-left: 1000px;}
100% {margin-left: -1000px;}
}
@-o-keyframes moveclouds {
0% {margin-left: 1000px;}
100% {margin-left: -1000px;}
}

看完了這篇文章,相信你對“css3如何實現簡單的白云飄動背景特效”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新乡县| 工布江达县| 井冈山市| 调兵山市| 邵武市| 潼南县| 宁都县| 白朗县| 巫山县| 唐山市| 天峻县| 高雄县| 云霄县| 聂荣县| 新巴尔虎右旗| 澄迈县| 信阳市| 讷河市| 沙湾县| 宝山区| 申扎县| 酉阳| 台中县| 镶黄旗| 汾西县| 临沭县| 炎陵县| 炉霍县| 应用必备| 林西县| 新化县| 河北区| 来凤县| 遂川县| 华宁县| 江口县| 泗洪县| 福建省| 中方县| 远安县| 克拉玛依市|