Commit 89cebb73 authored by 李志鸣's avatar 李志鸣

fea(Led Avi): 呼吸灯效果编写

parent 503782f5
<template>
<!-- 电泳跳转页面 -->
<div class="page-pack">
<div class="container">
<!-- 显示区域 -->
<div class="view-pack">
<div class="edectroppresis-pack"></div>
</div>
</div>
</div>
</template>
<script>
export default {
data () {
return {}
}
}
</script>
<style lang="scss" scoped>
.page-pack {
height: 100%;
width: 100%;
.container {
width: 1556px;
height: 1037px;
background: url("../../../assets/images/LedCarouselAvi/led_avi_jump_bg.png");
overflow: hidden;
// 显示区域
.view-pack {
height: 896px;
width: 1298px;
margin-top: 106px;
margin-left: 130px;
position: relative;
// 边缘闪光特效
@keyframes shine {
0% {
border-color: rgba(255,255,255,0);
box-shadow: 0px 0px 0px inset rgba(255,255,255,0);
}
100% {
border-color: rgba(255,255,255,1);
box-shadow: 0px 0px 200px inset rgba(255,255,255,1);
}
}
.edectroppresis-pack {
width: 546px;
height: 333px;
position: absolute;
top: 0;
left: 0;
animation: shine 1000ms ease-out infinite alternate;
}
}
}
}
</style>
\ No newline at end of file
<template> <template>
<div class="page-pack"> <div class="page-pack">
<div class="container"> <div class="container">
<!-- 电泳工作区跳转页面 -->
<ElectrophoresisJump></ElectrophoresisJump>
<!-- 电泳工作区 --> <!-- 电泳工作区 -->
<!-- <Electrophoresis></Electrophoresis> --> <!-- <Electrophoresis></Electrophoresis> -->
<!-- 钣金工作区 --> <!-- 钣金工作区 -->
...@@ -20,16 +22,18 @@ ...@@ -20,16 +22,18 @@
</template> </template>
<script> <script>
import Electrophoresis from './components/Electrophoresis' import ElectrophoresisJump from './components/ElectrophoresisJump';
import SheetMetal from './components/SheetMetal' import Electrophoresis from './components/Electrophoresis';
import SealedAnticorrosion from './components/SealedAnticorrosion' import SheetMetal from './components/SheetMetal';
import Putty from './components/Putty' import SealedAnticorrosion from './components/SealedAnticorrosion';
import MiddleCoat from './components/MiddleCoat' import Putty from './components/Putty';
import ComplexionPaint from './components/ComplexionPaint' import MiddleCoat from './components/MiddleCoat';
import finished from './components/Finished' import ComplexionPaint from './components/ComplexionPaint';
import finished from './components/Finished';
export default { export default {
components: { components: {
ElectrophoresisJump,
Electrophoresis, Electrophoresis,
SheetMetal, SheetMetal,
SealedAnticorrosion, SealedAnticorrosion,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment