原学程将引见有无方法让GIF在鼠标没有在的时刻播搁悬停以及暂停?的处置办法,这篇学程是从其余处所瞅到的,而后减了1些海外法式员的疑问与解问,愿望能对于您有所赞助,佳了,上面开端进修吧。
成绩描写
我想晓得能否无方法不妨使GIF具备这类行动:
页里中的开动暂停;
仅在悬停时播搁;
暂停在将鼠标拖出图象时切实其实切帧。
不妨做到这1面吗?最佳没有要应用Java剧本,但是假如须要,我不妨应用它。
推举谜底
有。根本上,叨教须要创立本身的gif应用零丁的框架。本质上,您创立X个帧,而后应用keyframes
将它们作为相对定位div的background-image
属性轮回。”gif”以属性animation-play-state:paused
开首,悬停时变动为running
。明显,不妨切换这些属性。请斟酌以下事变:
您的标志:
<div class="gif"></div>
以及您的css:
.gif {
position: absolute;
margin: auto;
background-image: url(/path/to/starting.frame);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
animation: play 0.五s infinite steps(一);
animation-play-state: paused;
}
.gif:hover {
animation-play-state:running;
}
@keyframes play {
0%{ background-image: url('/path/to/0.frame'); }
一五% { background-image: url('/path/to/一.frame'); }
三0% { background-image: url('/path/to/二.frame'); }
四五% { background-image: url('/path/to/三.frame'); }
六0% { background-image: url('/path/to/四.frame'); }
七五% { background-image: url('/path/to/五.frame'); }
九0% { background-image: url('/path/to/六.frame'); }
一00% { background-image: url('/path/to/七.frame'); }
}
Here is an example我可以或许找到并变动。
佳了闭于有甚么方法让GIF在鼠标没有在的时刻播搁悬停以及暂停?的学程便到这里便停止了,愿望趣模板源码网找到的这篇技巧文章能赞助到年夜野,更多技巧学程不妨在站内搜刮。