amis2/scss/components/_video.scss
吴多益 35711ace89
feat:增加 animation-duration,可以控制所有动画时长,也能用于一次性关闭所有动画效果 (#1303)
* feat:增加 animation-duration,可以控制所有动画时长,也能用于一次性关闭所有动画效果

* 补充文档
2021-01-04 16:45:43 +08:00

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;
}
}