mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 10:59:42 +08:00
35711ace89
* feat:增加 animation-duration,可以控制所有动画时长,也能用于一次性关闭所有动画效果 * 补充文档
39 lines
641 B
SCSS
39 lines
641 B
SCSS
.#{$ns}Video {
|
|
min-width: 200px;
|
|
|
|
&-cursor {
|
|
position: absolute;
|
|
border: 2px solid var(--info);
|
|
transition: all var(--animation-duration) ease-out;
|
|
}
|
|
|
|
&-frameList {
|
|
.#{$ns}Video-frameItem {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
&-frameLabel {
|
|
text-align: center;
|
|
}
|
|
|
|
.video-react-paused .video-react-big-play-button.big-play-button-hide {
|
|
display: block;
|
|
}
|
|
|
|
&-player {
|
|
position: relative;
|
|
}
|
|
|
|
&-error {
|
|
position: absolute;
|
|
display: block;
|
|
width: 100%;
|
|
padding: 5px 10px;
|
|
color: var(--danger);
|
|
background: rgba(255, 255, 255, 0.4);
|
|
text-align: center;
|
|
top: 0;
|
|
}
|
|
}
|