|
@@ -89,9 +89,10 @@
|
|
|
<Ppanel title="MTTR" class="stb-p"></Ppanel>
|
|
|
<Ppanel title="MTTF" class="stb-p"></Ppanel>
|
|
|
</div>
|
|
|
+ <!-- bounceInUp, -->
|
|
|
<el-dialog
|
|
|
top="50px"
|
|
|
- custom-class="modal"
|
|
|
+ custom-class="modal animated bounceIn"
|
|
|
v-model="showVideoDialog"
|
|
|
width="80%"
|
|
|
:destroy-on-close="true"
|
|
@@ -455,6 +456,14 @@ export default {
|
|
|
color: #fff;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .animated {
|
|
|
+ // animation-duration: 0.5s;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-overlay {
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.exchange {
|
|
@@ -466,4 +475,29 @@ export default {
|
|
|
overflow: hidden;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
+
|
|
|
+.modal {
|
|
|
+ animation-duration: 0;
|
|
|
+ @keyframes dialog-fade-in {
|
|
|
+ 0% {
|
|
|
+ transform: translate3d(0, 100%, 0);
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translate3d(0, 100%, 0);
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @keyframes dialog-fade-out {
|
|
|
+ 0% {
|
|
|
+ transform: translate3d(0, 0, 0);
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translate3d(0, -100%, 0);
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|