You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
417 B
23 lines
417 B
@import "../css3.less"; |
|
.mblFade { |
|
.transition-property(none); |
|
.transition-duration(0s); |
|
} |
|
.mblFade.mblTransition { |
|
.transition-property(opacity); |
|
.transition-duration(.6s); |
|
} |
|
.mblFade.mblOut { |
|
opacity: 1; |
|
} |
|
.mblFade.mblOut.mblTransition { |
|
.transition-timing-function(ease-out); |
|
opacity: 0; |
|
} |
|
.mblFade.mblIn { |
|
opacity: 0; |
|
} |
|
.mblFade.mblIn.mblTransition { |
|
.transition-timing-function(ease-in); |
|
opacity: 1; |
|
}
|
|
|