mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
chore: 适配@keyframes
默认的命名规则
This commit is contained in:
parent
afc15ea8df
commit
6176d9508b
@ -36,7 +36,7 @@
|
|||||||
width: 2.5em;
|
width: 2.5em;
|
||||||
height: 2.5em;
|
height: 2.5em;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
animation: loadAnimation 1.8s infinite ease-in-out;
|
animation: load-animation 1.8s infinite ease-in-out;
|
||||||
animation-fill-mode: both;
|
animation-fill-mode: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -68,7 +68,7 @@
|
|||||||
left: 3.5em;
|
left: 3.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes loadAnimation {
|
@keyframes load-animation {
|
||||||
0%,
|
0%,
|
||||||
80%,
|
80%,
|
||||||
100% {
|
100% {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@keyframes scheduleInWidth {
|
@keyframes schedule-in-width {
|
||||||
from {
|
from {
|
||||||
width: 0;
|
width: 0;
|
||||||
}
|
}
|
||||||
@ -8,7 +8,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes scheduleOutWidth {
|
@keyframes schedule-out-width {
|
||||||
from {
|
from {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
@ -280,7 +280,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
background: var(--el-color-primary);
|
background: var(--el-color-primary);
|
||||||
animation: scheduleInWidth 200ms ease-in;
|
animation: schedule-in-width 200ms ease-in;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 灵动模式下鼠标移出隐藏蓝色进度条 */
|
/* 灵动模式下鼠标移出隐藏蓝色进度条 */
|
||||||
@ -291,5 +291,5 @@
|
|||||||
width: 0;
|
width: 0;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
background: var(--el-color-primary);
|
background: var(--el-color-primary);
|
||||||
animation: scheduleOutWidth 200ms ease-in;
|
animation: schedule-out-width 200ms ease-in;
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,6 @@ module.exports = {
|
|||||||
],
|
],
|
||||||
rules: {
|
rules: {
|
||||||
"selector-class-pattern": null,
|
"selector-class-pattern": null,
|
||||||
"keyframes-name-pattern": null,
|
|
||||||
"no-descending-specificity": null,
|
"no-descending-specificity": null,
|
||||||
"scss/dollar-variable-pattern": null,
|
"scss/dollar-variable-pattern": null,
|
||||||
"selector-pseudo-class-no-unknown": [
|
"selector-pseudo-class-no-unknown": [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user