84 lines
2.0 KiB
Vue
84 lines
2.0 KiB
Vue
<template>
|
|
<Card class="container" title="云台控制">
|
|
<div class="maxbox">
|
|
<div class="left">
|
|
<img src=".././assets/images/progress/conbtn1.png" alt="" />
|
|
</div>
|
|
<div class="right">
|
|
<div class="btn">
|
|
<div class="one1">
|
|
<img src=".././assets/images/progress/img1.png" alt="" />
|
|
</div>
|
|
<div class="one2">
|
|
<img src=".././assets/images/progress/img2.png" alt="" />
|
|
</div>
|
|
</div>
|
|
<div class="btn">
|
|
<div class="one1">
|
|
<img src=".././assets/images/progress/img3.png" alt="" />
|
|
</div>
|
|
<div class="one2">
|
|
<img src=".././assets/images/progress/img4.png" alt="" />
|
|
</div>
|
|
</div>
|
|
<div class="btn">
|
|
<div class="one1">
|
|
<img src=".././assets/images/progress/img5.png" alt="" />
|
|
</div>
|
|
<div class="one2">
|
|
<img src=".././assets/images/progress/img6.png" alt="" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
</template>
|
|
<script>
|
|
import Card from "../components/Card.vue";
|
|
export default {
|
|
components: { Card },
|
|
data() {
|
|
return {};
|
|
},
|
|
methods:{
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
.maxbox {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
.left {
|
|
width: 50%;
|
|
margin-top: 8%;
|
|
margin-left: 8%;
|
|
}
|
|
.right {
|
|
width: 50%;
|
|
margin-top: 14%;
|
|
margin-left: 8%;
|
|
div{
|
|
margin-top: 4%;
|
|
}
|
|
.btn{
|
|
width: 108px;
|
|
height: 35px;
|
|
background-image: url(.././assets/images/progress/bgc1.png);
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
display: flex;
|
|
justify-content:center;
|
|
align-items: center;
|
|
.one2{
|
|
margin-left: 25%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |