2023西安数博会CIM演示-【前端】-Web
AdaKing88
2023-08-21 bc03b832caa49bbcd2674fe4cae3701b5059bf95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
  <div class="bottom">
    <wheel-menu></wheel-menu>
    <div class="menuBase"></div>
  </div>
</template>
 
<script>
import wheelMenu from "./bottomViewer/wheelMenu.vue"
export default {
  data() {
    return {
 
    }
  },
  components: {
    wheelMenu
  }
}
</script>
 
<style lang="less" scoped>
.bottom {
  width: 100%;
  height: 100px;
  // border:1px solid #fff ;
  background-color: rgba(50, 50, 50, 0.7);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: none;
 
  background: url("../../assets/img/bottom_back.png") no-repeat;
  background-size: 100% 100%;
 
  .menuBase {
    position: absolute;
    width: 121px;
    height: 10px;
    background: url("../../assets/img/menu_base.png") no-repeat;
    background-size: 100% 100%;
    top: 35px
  }
}
</style>