Browse Source
* commit '2d922779ba374f1b1435e323cdec2f8664b1bae7': BI-30745 精简语句,调整最小高度(+30px) BI-30745 操控class来实现ie hack BI-30745 使用js判断是否ie来兼容低版本ie BI-30745 将css animation相关的less mixin移到visual.less文件中 BI-30745 对于css3的animation的浏览器兼容前缀问题,定义less BI-30745 根据caniuse网站查询的兼容性,增加浏览器兼容前缀 替换gif,使用css animation实现组件loading加载动画es6
Zhenfei.Li
6 years ago
3 changed files with 102 additions and 15 deletions
@ -1,6 +1,34 @@ |
|||||||
@import "../index"; |
@import "../index"; |
||||||
|
@import "../resource/background"; |
||||||
.bi-pane { |
.bi-pane { |
||||||
min-height: 25px; |
min-height: 55px; |
||||||
.background-color(@color-bi-background-normal, 0); |
.background-color(@color-bi-background-normal, 0); |
||||||
|
} |
||||||
|
|
||||||
|
.bi-loading-widget { |
||||||
|
div { |
||||||
|
.background-color(@background-color-highlight, 90%); |
||||||
|
.border-radius(2.5px); |
||||||
|
.animation(loading-widget 0.8s infinite linear); |
||||||
|
} |
||||||
|
.rect2 { |
||||||
|
.animation-delay(-0.2s); |
||||||
|
} |
||||||
|
.rect3 { |
||||||
|
.animation-delay(-0.4s); |
||||||
|
} |
||||||
|
.keyframes (loading-widget, { |
||||||
|
0%, 100% { |
||||||
|
.transform (scaleY(0.3)); |
||||||
|
} |
||||||
|
50% { |
||||||
|
.transform (scaleY(1)); |
||||||
|
} |
||||||
|
}); |
||||||
|
&.hack { |
||||||
|
.loading-background; |
||||||
|
div { |
||||||
|
.background-color(@background-color-highlight, 0%); |
||||||
|
} |
||||||
|
} |
||||||
} |
} |
Loading…
Reference in new issue