Ich mag die Art und Weise, wie diese website ihre Ringe leuchten und pulsieren lassen und möchte wissen, wie sie es gemacht haben.Wie erstellt man eine pulsierende Glow-Ring-Animation in CSS?
Ich kann etwas ähnliches machen, aber ich bin nicht sehr gut.
Also das ist alles was ich herausfinden konnte, aber es scheint nicht zu funktionieren.
CSS:
glowycircleouter.blue .glow4 {
box-shadow: 0 0 25px #287ec6;
}
.glowycircleouter .glow4 {
-webkit-animation: glowyglow 3s 2250ms infinite;
-moz-animation: glowyglow 3s 2250ms infinite;
-ms-animation: glowyglow 3s 2250ms infinite;
-o-animation: glowyglow 3s 2250ms infinite;
animation: glowyglow 3s 2250ms infinite;
animation-name: glowyglow;
animation-duration: 3s;
animation-timing-function: initial;
animation-delay: 2250ms;
animation-iteration-count: infinite;
animation-direction: initial;
animation-fill-mode: initial;
animation-play-state: initial;
}
.glowycircleouter .glow4 {
opacity: 0;
display: block;
position: absolute;
left: 50%;
top: 50%;
width: 200%;
height: 200%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
HTML:
<span class="glow4"></span>
Aus an ihrem Quellcode suchen, sieht es aus wie sie verwendet 'keyframes',' border-radius: 50% ',' opacity', 'transform',' translate' und "Maßstab". – 4castle
googeln 'css pulsierende Ringe' gibt einen Stapel von Codepens und Dinge zurück: http://jsfiddle.net/dirtyharry/dw51cgu6/ –
vielleicht hilfreich: http://StackOverflow.com/A/33160848/3597276 –