mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
style: fix animation css vars not work (#9337)
This commit is contained in:
parent
3e74e451bb
commit
229695cadc
@ -25,7 +25,8 @@
|
|||||||
background: var(--van-progress-color);
|
background: var(--van-progress-color);
|
||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
transform-origin: 0;
|
transform-origin: 0;
|
||||||
transition: all 0.3s ease-out;
|
transition: all var(--van-animation-duration-base)
|
||||||
|
var(--van-animation-timing-function-enter);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__pivot {
|
&__pivot {
|
||||||
@ -41,6 +42,7 @@
|
|||||||
word-break: keep-all;
|
word-break: keep-all;
|
||||||
background-color: var(--van-progress-pivot-background-color);
|
background-color: var(--van-progress-pivot-background-color);
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
transition: all 0.3s ease-out;
|
transition: all var(--van-animation-duration-base)
|
||||||
|
var(--van-animation-timing-function-enter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -80,60 +80,60 @@
|
|||||||
|
|
||||||
.van-fade {
|
.van-fade {
|
||||||
&-enter-active {
|
&-enter-active {
|
||||||
animation: @animation-duration-base van-fade-in both
|
animation: var(--van-animation-duration-base) van-fade-in both
|
||||||
@animation-timing-function-enter;
|
var(--van-animation-timing-function-enter);
|
||||||
}
|
}
|
||||||
|
|
||||||
&-leave-active {
|
&-leave-active {
|
||||||
animation: @animation-duration-base van-fade-out both
|
animation: var(--van-animation-duration-base) van-fade-out both
|
||||||
@animation-timing-function-leave;
|
var(--van-animation-timing-function-leave);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-slide-up {
|
.van-slide-up {
|
||||||
&-enter-active {
|
&-enter-active {
|
||||||
animation: van-slide-up-enter @animation-duration-base both
|
animation: van-slide-up-enter var(--van-animation-duration-base) both
|
||||||
@animation-timing-function-enter;
|
var(--van-animation-timing-function-enter);
|
||||||
}
|
}
|
||||||
|
|
||||||
&-leave-active {
|
&-leave-active {
|
||||||
animation: van-slide-up-leave @animation-duration-base both
|
animation: van-slide-up-leave var(--van-animation-duration-base) both
|
||||||
@animation-timing-function-leave;
|
var(--van-animation-timing-function-leave);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-slide-down {
|
.van-slide-down {
|
||||||
&-enter-active {
|
&-enter-active {
|
||||||
animation: van-slide-down-enter @animation-duration-base both
|
animation: van-slide-down-enter var(--van-animation-duration-base) both
|
||||||
@animation-timing-function-enter;
|
var(--van-animation-timing-function-enter);
|
||||||
}
|
}
|
||||||
|
|
||||||
&-leave-active {
|
&-leave-active {
|
||||||
animation: van-slide-down-leave @animation-duration-base both
|
animation: van-slide-down-leave var(--van-animation-duration-base) both
|
||||||
@animation-timing-function-leave;
|
var(--van-animation-timing-function-leave);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-slide-left {
|
.van-slide-left {
|
||||||
&-enter-active {
|
&-enter-active {
|
||||||
animation: van-slide-left-enter @animation-duration-base both
|
animation: van-slide-left-enter var(--van-animation-duration-base) both
|
||||||
@animation-timing-function-enter;
|
var(--van-animation-timing-function-enter);
|
||||||
}
|
}
|
||||||
|
|
||||||
&-leave-active {
|
&-leave-active {
|
||||||
animation: van-slide-left-leave @animation-duration-base both
|
animation: van-slide-left-leave var(--van-animation-duration-base) both
|
||||||
@animation-timing-function-leave;
|
var(--van-animation-timing-function-leave);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-slide-right {
|
.van-slide-right {
|
||||||
&-enter-active {
|
&-enter-active {
|
||||||
animation: van-slide-right-enter @animation-duration-base both
|
animation: van-slide-right-enter var(--van-animation-duration-base) both
|
||||||
@animation-timing-function-enter;
|
var(--van-animation-timing-function-enter);
|
||||||
}
|
}
|
||||||
|
|
||||||
&-leave-active {
|
&-leave-active {
|
||||||
animation: van-slide-right-leave @animation-duration-base both
|
animation: van-slide-right-leave var(--van-animation-duration-base) both
|
||||||
@animation-timing-function-leave;
|
var(--van-animation-timing-function-leave);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user