日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > CSS >内容正文

CSS

html加载gif动画效果,html – 使用CSS动画加载图像VS使用GIF图像加载

發布時間:2023/12/9 CSS 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 html加载gif动画效果,html – 使用CSS动画加载图像VS使用GIF图像加载 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

我在執行繁重的

JavaScript操作時遇??到了顯示加載CSS動畫的問題,因此想知道CSS動畫是否比顯示簡單的加載GIF圖像需要更多資源,我進行了以下測試.

1個已創建的頁面,加載CSS

>創建加載CSS動畫的頁面

>創建了加載GIF圖像的頁面

>使用Chrome任務管理器比較他們的資源

結果如下:

看起來CSS動畫使用的CPU更多,內存更多

所以基本上我想咨詢一下使用CSS動畫.這不是太重了嗎?我應該避免在裝載箱子中使用它嗎?

這是用于加載CSS動畫的代碼

CSS

/* Beautiful loading screen */

#loadingWrap{

width: 100%;

height: 100%;

top: 0px;

z-index: 250;

background-color: rgba(255, 255, 255, 0.46);

}

.glyphicon.spin {

font-size: 36px;

-webkit-animation: spin 1.822s infinite linear;

-moz-animation: spin 1.822s infinite linear;

-o-animation: spin 1.822s infinite linear;

animation: spin 1.822s infinite linear;

-webkit-transform-origin: 50% 58%;

transform-origin:50% 58%;

-ms-transform-origin:50% 58%; /* IE 9 */

line-height: 0px;

}

@-moz-keyframes spin {

from { -moz-transform: rotate(0deg); }

to { -moz-transform: rotate(360deg); }

}

@-webkit-keyframes spin {

from {-webkit-transform: rotate(0deg);}

to {-webkit-transform: rotate(360deg);}

}

@keyframes spin {

from { transform: rotate(0deg); }

to {transform: rotate(360deg); }

}

#loadingIcon {

z-index: 10;

position: absolute;

right: 20px;

bottom: 20px;

line-height: 0px;

}

HTML

Q

這是使用簡單GIF圖像加載的代碼

CSS

#loadingWrap{

width: 100%;

height: 100%;

top: 0px;

z-index: 250;

background-color: rgba(255, 255, 255, 0.46);

}

#loadingIcon {

z-index: 10;

position: absolute;

right: 20px;

bottom: 20px;

line-height: 0px;

background: url(../1-0.gif) no-repeat center center;

width: 20px;

height: 20px;

}

HTML

總結

以上是生活随笔為你收集整理的html加载gif动画效果,html – 使用CSS动画加载图像VS使用GIF图像加载的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。