增加基本项目配置
This commit is contained in:
19
node_modules/animate.css/source/attention_seekers/pulse.css
generated
vendored
Normal file
19
node_modules/animate.css/source/attention_seekers/pulse.css
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@keyframes pulse {
|
||||
from {
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: scale3d(1.05, 1.05, 1.05);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.pulse {
|
||||
animation-name: pulse;
|
||||
}
|
Reference in New Issue
Block a user