cameraScreen.vue 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <script>
  2. export default {
  3. name: "CameraScreen",
  4. data() {
  5. return {}
  6. },
  7. methods:{
  8. leave(){
  9. this.$emit("leave");
  10. },
  11. issue(){
  12. this.$emit("issue");
  13. }
  14. }
  15. }
  16. </script>
  17. <template>
  18. <div class="first">
  19. <div style="color: white;margin: 20px 0 0 20px;font-size: 24px">电科院西侧球机</div>
  20. <i style="color: white;position: absolute;right: 20px;top: 20px;font-size: 27px" class="el-icon-time">
  21. <span style="margin-left: 8px;font-size: 24px">2024/11/11 18:00:00</span>
  22. </i>
  23. <div class="c1" style="right: 20px;top: 70px;" @click="leave()">
  24. <img src="../../../assets/zhang/cameraScreen/leave.png" width="20px">
  25. </div>
  26. <div class="c1" style="right: 20px;top: 120px;" @click="issue()">
  27. <img src="../../../assets/zhang/cameraScreen/cut.png" width="20px">
  28. </div>
  29. <div class="c1" style="right: 20px;top: 170px;">
  30. <img src="../../../assets/zhang/cameraScreen/bigger.png" width="20px">
  31. </div>
  32. <div class="c1" style="right: 20px;top: 220px;">
  33. <img src="../../../assets/zhang/cameraScreen/smaller.png" width="20px">
  34. </div>
  35. <div class="c2" style="right: 20px;top: 420px;">
  36. <div style="position: absolute;left: 0;">
  37. <img src="../../../assets/zhang/cameraScreen/left.png" width="60px">
  38. </div>
  39. <div style="position: absolute;right: 0;">
  40. <img src="../../../assets/zhang/cameraScreen/right.png" width="60px">
  41. </div>
  42. <div style="position: absolute;top: 0;">
  43. <img src="../../../assets/zhang/cameraScreen/up.png" width="80px">
  44. </div>
  45. <div style="position: absolute;bottom: 0;">
  46. <img src="../../../assets/zhang/cameraScreen/down.png" width="80px">
  47. </div>
  48. </div>
  49. </div>
  50. </template>
  51. <style scoped lang="scss">
  52. .first{
  53. background-color: black;
  54. width: 1200px;
  55. height: 700px;
  56. display: flex;
  57. position:relative;
  58. border: 2px solid transparent;
  59. box-shadow: 0 0 10px rgb(0,153,184) inset,0 0 30px rgb(0,153,184);
  60. }
  61. .c1{
  62. width: 50px;
  63. height: 30px;
  64. background-color: rgba(88,139,196,0.37);box-shadow: 0 0 15px rgb(47,113,124);
  65. display: flex;
  66. position:absolute;
  67. justify-content: center;
  68. align-items: center;
  69. }
  70. .c1:hover{
  71. cursor: pointer;
  72. }
  73. .c2{
  74. width: 200px;
  75. height: 200px;
  76. border-radius: 50%;
  77. background-color: rgba(88,139,196,0.37);box-shadow: 0 0 15px rgb(47,113,124);
  78. display: flex;
  79. position:absolute;
  80. justify-content: center;
  81. align-items: center;
  82. }
  83. </style>