css3实现雪碧图帧动画(转-完善)
从网上查到了相关资料,转过来研究学习一下,
背景:
此需求是在html界面实现,纯原生,没有像vue生命周期那些东西。
场景:
一个单纯的图片背景,想要在上面加个动图。一瞬间脑子里想到两个方案:
一:最省前端功夫的:ui压缩一个gif图出来
二:需要前端写点代码的:把ui提供的多张图片,利用css3动画,进行动画切换,达到动图的效果
情况一:ui压缩出的gif出现白边的问题,就不太好看,而且ui已经尽力了。。。
效果图:

情况二:使用css3动画属性,也发现了不适用的问题:
效果图:截图不能展示问题
老老实实使用css3.keyframe和animation来实现,这里也发现了问题,图片够小,即使预先在head加载了图片,但是没有添加到body中,可以在network看到图片加载成功,然后在动画里使用延迟,在qq、谷歌均可以正常加载,唯独在谷歌出现依旧出现闪烁。
基于此两种解决方案:
1:在head中写一个js,其目的是,快于页面加载,就生成img标签,赋值图片路径,append到页面。
间接实现图片预先加载,而后进行css3帧动画,当然你的页面不需要用到他,你可以隐藏掉。(此方案不太优雅,但能成事)
图片形式:

js:
for(var i = 0;i<10;i++){
var img = new Image()
img.onload = await function () {}.bind(this)
img.src='/static/img/'+i+'_03.png'
document.body.append(img)
}
.frame-logo .lo-wrap .img-bg{
width: 440px;
height: 424px;
display: flex;
position: absolute;
top: 3vh;
left: 9vw;
background: url('/static/img/frame1/1_03.png');
background-size:cover;
animation: identifier_p 2s infinite;
}
@keyframes identifier_p {
0% {
background: url('/static/img/frame1/1_03.png');
}
7% {
background: url('/static/img/frame1/2_03.png');
}
14% {
background: url('/static/img/frame1/3_03.png');
}
21% {
background: url('/static/img/frame1/4_03.png');
}
28% {
background: url('/static/img/frame1/5_03.png');
}
35% {
background: url('/static/img/frame1/6_03.png');
}
42% {
background: url('/static/img/frame1/7_03.png');
}
49% {
background: url('/static/img/frame1/8_03.png');
}
56% {
background: url('/static/img/frame1/9_03.png');
}
63% {
background: url('/static/img/frame1/10_03.png');
}
70% {
background: url('/static/img/frame1/11_03.png');
}
77% {
background: url('/static/img/frame1/12_03.png');
}
84% {
background: url('/static/img/frame1/13_03.png');
}
91% {
background: url('/static/img/frame1/14_03.png');
}
98% {
background: url('/static/img/frame1/14_03.png');
}
100% {
background: url('/static/img/frame1/1_03.png');
}
}
2:使用雪碧图进行实现,将多张帧的图,合成雪碧图,然后改变位置进行实现。
animation: identifier_p 2s steps(1, start) infinite;这行代码中的steps(1, start)是实现的关键,如果没有他,这个动画相当可怕,等同于看一张不停的改变定位的背景图。有了他才能真正称为是“帧动画”,可以说是相当丝滑了,比gif体验好多了。
图片形式:



css:
.frame-logo .lo-wrap .img-bg{
width: 440px;
height: 424px;
display: flex;
position: absolute;
top: 3vh;
left: 9vw;
background: url('/static/img/test/css_sprites.png');
background-size:cover;
animation: identifier_p 2s steps(1, start) infinite;
//steps:(number,star/end)
}
@keyframes identifier_p {
0% {
background: url('/static/img/test/css_sprites.png') -10px -10px;
}
7% {
background: url('/static/img/test/css_sprites.png') -488px -10px;
}
14% {
background: url('/static/img/test/css_sprites.png') -10px -474px;
}
21% {
background: url('/static/img/test/css_sprites.png') -488px -474px;
}
28% {
background: url('/static/img/test/css_sprites.png') -966px -10px;
}
35% {
background: url('/static/img/test/css_sprites.png') -966px -474px;
}
42% {
background: url('/static/img/test/css_sprites.png') -10px -938px;
}
49% {
background: url('/static/img/test/css_sprites.png') -488px -938px;
}
56% {
background: url('/static/img/test/css_sprites.png') -966px -938px;
}
63% {
background: url('/static/img/test/css_sprites.png') -1444px -10px;
}
70% {
background: url('/static/img/test/css_sprites.png') -1444px -474px;
}
77% {
background: url('/static/img/test/css_sprites.png') -1444px -938px;
}
84% {
background: url('/static/img/test/css_sprites.png') -10px -1402px;
}
91% {
background: url('/static/img/test/css_sprites.png') -488px -1402px;
}
98% {
background: url('/static/img/test/css_sprites.png') -10px -1402px;
}
100% {
background: url('/static/img/test/css_sprites.png') -488px -1402px;
}
}
原文地址 :https://blog.csdn.net/qq_44706619/article/details/121426057
补充 :
Steps(<number_of_steps>,<direction>)
方向为”start”表示一个左–持续函数,在动画开始时,动画的第一段将会马上完成。以左侧端点为起点,立即跳到第一个step的结尾处。它会立即跳到第一段的结束并且保持这样的状态直到第一步的持续时间结束。后面的每一帧都将按照此模式来完成动画。
方向为”end”表示一个右–持续函数。动画执行时,在每一帧里,动画保持当前状态直到这一段的持续时间完成,才会跳到下一步的起点,后面的每一帧都按照这个模式来进行,在最后一帧的起点,等到这一帧的持续时间结束,整个动画的执行也已经结束,执行动画的元素来不及跳到这一帧的终点,直接回到了整个动画起点,开始了第二次动画。每个选择本质上从一个不同的面移动这个元素并且将产生一个不同的位置在这个相同的动画里。
这面是示例图:


References:
House of fun casino
References:
https://instapages.stream/story.php?title=crypto-casino-licensing-guide-bitcoin-gaming-compliance-2024
References:
How is synthetic testosterone made
References:
https://www.arianesarahkoch.de/blog/index.php/;focus=STRATP_com_cm4all_wdn_Flatpress_37649217&frame=STRATP_com_cm4all_wdn_Flatpress_37649217?x=entry:entry230902-192725;comments:1
References:
Portugues online
References:
https://bandori.party/user/686241/fowlbelief0/
References:
Bodybuilding steroids side effects photos
References:
https://bantooplay.com/@sanggatliff246?page=about
References:
What effect does steroids have on your body
References:
http://101.43.95.130:3001/lottiem0264365
References:
Bad side effects of steroids
References:
https://buzz.gi/@dereksellers4?page=about
References:
Street names for anabolic steroids
References:
http://zzdgitea.stnav.com/maryjonix3696
I just could not leave your site prior to suggesting that I actually enjoyed the usual
info a person provide for your visitors? Is going to be back incessantly in order to check up on new
posts
References:
https://my.vipaist.ru/user/hoseslice0/
References:
Instant Casino Spielanbieter
References:
https://diego-maradona-ar.org/user/yearcloset88/
References:
Instant Casino App Android
References:
https://travelersqa.com/user/cattlebeech37
References:
Instant Casino App Android
References:
https://bbs.pku.edu.cn/v2/jump-to.php?url=https://de.trustpilot.com/review/hanffidel.de
References:
Instant Casino Jackpot Spiele
References:
https://g.clicgo.ru/user/timerramie3/
References:
Sun coast casino
References:
https://justbookmark.win/story.php?title=beyond-the-game-experience-over-6000-titles-exclusive-bonuses-at-winspirit-canada
References:
Fantasy springs casino
References:
https://aryba.kg/user/pololace19/
References:
2ahukewjkv_v5usvnahvlip4khu09akmq420oa3oecakqcq|the best steroids for muscle growth
References:
https://trade-britanica.trade/wiki/Winstrol_Erfahrungen_Zyklus_Winstrol_Kaufen_Kur_2026
References:
Scottsdale casinos
References:
https://www.udrpsearch.com/user/oceangram61
References:
How long is a steroid cycle
References:
https://mensvault.men/story.php?title=spiropent-100-st-mit-dem-e-rezept-kaufen
References:
Xtreme muscle pro review
References:
https://mahavet.org/2026/04/dianabol-review-side-effects-benefits-and-results-2026/
References:
Safe and legal steroids
References:
https://jobcop.ca/employer/buy-winstrol-10-mg-stanozolol-oral-tablets-by-dragon-pharma/
top selling muscle building supplements
References:
https://intensedebate.com/people/bottlesink89
References:
Online Casino Echtgeld Google Pay
References:
https://tvoyaskala.com/user/hairbrush82/
References:
Niagra falls casino
References:
https://diego-maradona-ar.org/user/refundcongo4/
References:
Mahjong time
References:
https://forum.issabel.org/u/potatodeath4
crazy mass legal steroids
References:
http://okprint.kz/user/dinghybun04/
buying online steroids
References:
https://postheaven.net/denimstream3/buy-1-andro-for-sale-99-pure-usa-made
References:
Rocketplay casino accept neosurf
References:
https://zenwriting.net/nylonband59/rocketplay-neosurf-deposit-guide-play-real-money
References:
High stake poker rooms
References:
https://undrtone.com/animalpain5
References:
Blue heron casino
References:
https://graph.org/Casino-Online-Australia-Top-Licensed-Sites–Reviews-04-20
References:
Best au internet casinos
References:
https://graph.org/Stay-Casino-04-20
References:
Casinos london
References:
https://casino-royale-filme.online-spielhallen.de/
References:
Calgary casinos
References:
https://casino-welcome-bonus.online-spielhallen.de/
References:
Mannheim
References:
https://gringo-casino.online-spielhallen.de/
References:
Heidelberg
References:
https://lasvegas-casino.online-spielhallen.de/
References:
Casino udbetalingsprocent sammenligningsside
References:
https://syq.im:2025/veroniquejcj48/8081udbetalingshastighed-og-procenter-casino/wiki/Sikkerhed-i-online-casinoer-s%C3%A5dan-tjekker-du-det
References:
Top online casinoer med høj udbetaling
References:
https://a-taxi.com.ua/user/thrillplot78/
References:
Bedste casinoer uden udbetalingsgrænse
References:
https://conexaempregos.com.br/companies/beste-online-casino-auszahlungsquoten-hohe-gewinnchancen/
References:
Sider med højeste udbetalingsprocent på slots
References:
https://precisionscans.net/employer/schnelle-auszahlung-casino-2026-sofort-gewinne-abheben/
References:
Slots of vegas no deposit bonus codes https://code.wemediacn.com/tanishahampton/tanisha2020/wiki/Best-Online-Casinos-Australia-for-2026%3A-80%2B-Sites-Ranked
References:
Tuscany suites and casino https://jobs.maanas.in/institution/new-microgaming-bonus-codes-for-may-2026/
References:
Sands regency casino reno nv https://mahalkita.ph/@amjmilo5222230
References:
Slot machine games for android http://dev-gitlab.dev.sww.com.cn/roycereeves06
The overall structure of this post feels very natural and organized, since the ideas connect naturally and the discussion stays interesting without becoming too difficult for readers to follow carefully.
Хуй как у коня
Your ability to take this data and present it in such an unbiased and easily readable format is greatly appreciated. I will definitely be recommending this page to my coworkers.
lista casinos cuenta rut
The objective tone you maintained throughout this entire read is highly commendable, as it allows the facts to speak for themselves and provides a very reliable source of information for those looking to learn more about the matter.
在线购买他达拉非片用于肛交XXX色情
References:
Total rewards casinos https://casino-online-blackjack.online-spielhallen.de/
I just wanted to drop a quick note to say how much I valued this article. It covers the core concepts in a perfectly thoughtful and understandable way, making for a great quick read.
在线购买他达拉非片用于肛交XXX色情
References:
No deposit bonus 2026 neu https://purple-casino.online-spielhallen.de/
References:
Petit Casino https://vulkan-casino.online-spielhallen.de/
References:
Paypal casino spiele https://palms-casino-resort-las-vegas.online-spielhallen.de/
References:
Casino stuttgart https://casino-mit-handyrechnung-bezahlen.online-spielhallen.de/
Having read a few different perspectives recently, I can confidently say that your systematic approach to presenting this data makes it one of the most useful pieces I have seen.
Watch kids sexual porno video xxx sex
References:
Perth crown casino https://busforsale.ae/profile/alexandriaball
References:
Casino campione d’italia https://prosellconsulting.com/employer/best-payid-casinos-australia-2026-for-quick-withdrawals
References:
Online casino south africa https://findinall.com/profile/kayleewaldrop8
References:
Novoline online casino https://casino-rockbet.online-spielhallen.de/
I just wanted to leave a quick note to say how valuable this overview is. The logical structure and completely balanced perspective provide a really solid foundation for understanding the topic.
children xxx video porn site xxx sex video
References:
Canadian gaming summit https://atpo.ca/employer/payid-pokies-2026-tested-payid-casinos-in-australia
What makes this post work so well is the combination of a clear structure and a natural tone, because together they create a discussion that feels useful, smooth, and enjoyable to read from beginning to end.
Xxx video onlyfans sex video site
This discussion has a natural flow that keeps the content interesting without making the topic feel too complicated.
porn ai chat
It is always a pleasant surprise to find an article that delivers exactly what it promises. Your unbiased breakdown of the facts is both appreciated and incredibly helpful, providing a highly strong foundation of knowledge for anyone who wants to dive deeper into this subject.
Watch kids sexual porno video xxx sex
HairNeva is a well-known Istanbul-based hair restoration clinic specializing in FUE, DHI, Sapphire FUE, unshaven hair transplants, beard restoration, and modern regenerative treatments. Directed by European Board-certified plastic surgeon Assoc. Prof. Dr. Guncel Ozturk, the clinic integrates individualized treatment strategies, AI-powered hair analysis, inclusive treatment packages, and extended post-treatment care. HairNeva emphasizes realistic-looking results, doctor-led treatments, patient satisfaction, and full assistance for international patients.
hair transplant turkey
It is always nice to come across content that actually takes the time to break down the subject matter so thoroughly without overcomplicating the core message you are trying to deliver to the readers here.
casino en ligne neosurf
This post does a good job of keeping the discussion meaningful without making the topic feel too heavy or unnecessarily complex.
https://dollyolive.co.uk/
It is always a pleasure to find a post that respects the reader’s time by getting straight to the point while still providing all the necessary context required to fully grasp the broader implications of the subject at hand.
https://health-solution.nl/
It is always nice to come across content that actually takes the time to break down the subject matter so thoroughly without overcomplicating the core message you are trying to deliver to the readers here.
porn video
巫師色情
ретро порно геи
This serves as a fantastic starting point for anyone looking to get acquainted with the material. Your simple formatting ensures that the core points are immediately visible to all.
https://cocomosaic.nl/
порно фнаф 9 рокси
I am very glad I found this page, as the information provided here is exactly what I was searching for. It is a highly clear, universally applicable summary that perfectly balances depth and readability without leaning toward any specific bias.
在线购买无处方安定片 xxx Pornhub
The formatting and overall presentation of this post are absolutely impressive. It ensures that the most critical pieces of information stand out clearly without feeling too heavy.
14 years old porno
The way this post is written makes the whole discussion feel very natural and easy to follow, while also keeping enough depth in the topic to make readers interested in sharing their own opinions and continuing the conversation further.
adult xxx video porn site xxx sex video
I have read quite a few different takes on this general subject recently, but your article stands out because of how systematically you present the facts while still keeping the tone very accessible and straightforward.
sofia rain porno
There is something very approachable about the way this post presents its message, because the wording feels balanced and relaxed while still keeping the discussion insightful and relevant for a broad online audience.
porno tru kait
I like how this post keeps the discussion interesting and easy to follow while also presenting the ideas in a well-rounded and meaningful way that feels natural for readers online.
porno santaj
I appreciate how this post creates a relaxed and thoughtful atmosphere for discussion, since the tone feels friendly and open while the ideas themselves are presented clearly and in a well structured manner throughout.
melania trump porno
I really appreciate the clear and professional way this information is presented, as it makes it so much easier for readers like me to process everything without getting lost in complicated terminology.
porno sin i mama
I genuinely enjoyed reading this carefully written piece. The objective approach you took helps clarify the main points beautifully, making it very easy for the audience to digest.
This site scams its users
Thank you for sharing such a balanced and insightful piece. The focused explanations and clean layout make this a fantastic resource for anyone wanting to learn more about the subject.
Este sítio é uma fraude
I was just browsing through some pages today and happened to stumble upon this post, and I must say that the clarity of your writing makes the whole topic incredibly clear to follow for anyone visiting.
在线购买无处方安定片 xxx Pornhub
The overall presentation here feels very polished and accessible because the wording stays clear, the tone remains thoughtful, and the discussion itself encourages positive and meaningful interaction between readers online.
Watch sexual porno video xxx sex adults site
cialis for sale online
Your ability to summarize such a broad topic into a single, cohesive post is truly impressive. The formatting is neat, the tone is perfectly balanced, and the overall reading experience was extremely positive. Thank you for sharing your work here.
https://fyrleyfoodbar.nl/
One thing that stands out about this post is how naturally the ideas are presented, because the discussion flows in a way that feels both enjoyable and clear without becoming too complicated for readers to follow.
https://kookworkshopbreda.nl/
I genuinely enjoyed reading through your perspective on this, as it is always beneficial to encounter thoughtfully written thoughts that provide a clear and concise overview of the subject matter without being overly biased.
https://beregoedkinderkleding.nl/
What I appreciate most here is how easy the post is to read while still managing to feel meaningful, since the discussion stays fair and worth following without becoming too heavy for readers to follow closely.
https://win.info.pl/
I like how this post stays useful and accessible at the same time, creating a positive reading experience online.
在线购买无处方安定片 xxx Pornhub
The clear yet thorough nature of this article makes it a fantastic resource, and I truly value the methodical approach you took to ensure every single point was covered in a easy-to-understand and easy-to-understand manner for the readers.
comparatif casino en ligne
This post creates a thoughtful and positive atmosphere for discussion thanks to its simple language and natural conversational style throughout.
https://comparenergiezuinig.nl/
Your ability to summarize such a broad topic into a single, cohesive post is truly appreciated. The formatting is clean, the tone is perfectly neutral, and the overall reading experience was extremely positive. Thank you for sharing your work here.
在线购买他达拉非片用于肛交XXX色情
The discussion here feels well organized and fair, which helps make the content easier for readers to engage with online.
Bookmaker hors ARJEL fiable
DK88 online casino Malaysian players trust provides engaging entertainment across desktop and mobile devices.
dk88 casino malaysia
The way this post is organized makes the discussion much easier to engage with and engage with, since the ideas are explained in a clear way and the overall tone encourages positive interaction and thoughtful participation from readers.
https://furnaceainewsletter.com
The tone of this post is balanced and friendly, which helps create a pleasant and positive reading experience online.
https://dobivolki2325343.com
The flow of ideas throughout this post feels very smooth and well organized, because each point connects naturally with the next one and helps keep the reader interested from the beginning all the way to the end.
https://8848pictures.com
The overall presentation of this post feels very well-rounded and carefully written, because it manages to explain the topic in a clear way while also keeping the discussion enjoyable, easy to connect with, and open to different viewpoints from readers online.
https://rijschoolzuidlaren.nl/
The conversational style used throughout this post makes the content feel more genuine and easy to connect with, which helps readers stay interested and encourages them to participate in the discussion more naturally and respectfully.
zoo porno
https://sites.google.com/view/howtospotafakechanelbag/
What I like most is that it makes a fairly ordinary task much easier. The interface is clean, and the whole experience feels smooth.