|
@@ -30,7 +30,7 @@
|
|
|
>
|
|
|
<a>
|
|
|
<img
|
|
|
- title="自动漫游"
|
|
|
+ title="自动导览"
|
|
|
:src="require('@/assets/images/icon/play.png')"
|
|
|
width="24"
|
|
|
height="24"
|
|
@@ -72,6 +72,7 @@
|
|
|
title="场景导览"
|
|
|
>
|
|
|
<img
|
|
|
+ title="导览列表"
|
|
|
class="icon icon-inside"
|
|
|
:src="
|
|
|
require(`@/assets/images/icon/auto${
|
|
@@ -88,10 +89,12 @@
|
|
|
rel="tooltip"
|
|
|
>
|
|
|
<img
|
|
|
+ title="自由漫游"
|
|
|
class="icon icon-inside"
|
|
|
:src="require('@/assets/images/icon/inside.png')"
|
|
|
/>
|
|
|
<img
|
|
|
+ title="自由漫游"
|
|
|
class="icon icon-inside active"
|
|
|
:src="require('@/assets/images/icon/inside_active.png')"
|
|
|
/>
|
|
@@ -103,13 +106,14 @@
|
|
|
rel="tooltip"
|
|
|
>
|
|
|
<img
|
|
|
+ title="三维视角"
|
|
|
class="icon icon-inside"
|
|
|
:src="require('@/assets/images/icon/dollhouse.png')"
|
|
|
/>
|
|
|
<img
|
|
|
+ title="三维视角"
|
|
|
class="icon icon-inside active"
|
|
|
:src="require('@/assets/images/icon/dollhouse_active.png')"
|
|
|
- title="navigation icon "
|
|
|
/>
|
|
|
</div>
|
|
|
<div
|
|
@@ -119,10 +123,12 @@
|
|
|
title="顶部俯视"
|
|
|
>
|
|
|
<img
|
|
|
+ title="平面视角"
|
|
|
class="icon icon-inside"
|
|
|
:src="require('@/assets/images/icon/floor.png')"
|
|
|
/>
|
|
|
<img
|
|
|
+ title="平面视角"
|
|
|
class="active icon icon-inside active"
|
|
|
:src="require('@/assets/images/icon/floor_active.png')"
|
|
|
/>
|
|
@@ -230,6 +236,7 @@
|
|
|
<!-- 分享 -->
|
|
|
<div class="share" @click="shareShow = true">
|
|
|
<img
|
|
|
+ title="分享"
|
|
|
:src="require(`@/assets/img/share${shareShow ? 'Ac' : ''}.png`)"
|
|
|
alt=""
|
|
|
/>
|
|
@@ -253,7 +260,7 @@
|
|
|
title="全屏"
|
|
|
>
|
|
|
<a>
|
|
|
- <img :src="require('@/assets/img/full.png')" />
|
|
|
+ <img title="全屏" :src="require('@/assets/img/full.png')" />
|
|
|
</a>
|
|
|
</div>
|
|
|
<div
|
|
@@ -266,6 +273,7 @@
|
|
|
>
|
|
|
<a>
|
|
|
<img
|
|
|
+ title="关闭全屏"
|
|
|
:src="require('@/assets/img/fullAc.png')"
|
|
|
style="width: 50px"
|
|
|
/>
|
|
@@ -273,13 +281,16 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- 分享组件 -->
|
|
|
+ <Share v-if="shareShow" @close='shareShow=false' :smBtn='smBtn'/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-//引入题目
|
|
|
+//引入组件
|
|
|
+import Share from './compomemt/share.vue'
|
|
|
export default {
|
|
|
- components: {},
|
|
|
+ components: {Share},
|
|
|
data() {
|
|
|
return {
|
|
|
isGuide: true,
|
|
@@ -345,7 +356,7 @@ export default {
|
|
|
transition: all 0.3s;
|
|
|
z-index: 999;
|
|
|
height: 100%;
|
|
|
- background-color: rgba(107, 65, 34, 0.8);
|
|
|
+ background-color: rgba(119,73,38,.8);
|
|
|
text-align: center;
|
|
|
.smBtn {
|
|
|
text-align: center;
|
|
@@ -357,23 +368,30 @@ export default {
|
|
|
left: -18px;
|
|
|
width: 18px;
|
|
|
height: 60px;
|
|
|
- background-color: rgba(107, 65, 34, 0.8);
|
|
|
+ background-color: rgba(119,73,38,.8);
|
|
|
border-radius: 5px 0 0 5px;
|
|
|
}
|
|
|
.logo {
|
|
|
margin: 20px 0 30px;
|
|
|
width: 180px;
|
|
|
}
|
|
|
- .rowBox{
|
|
|
+ .rowBox {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
height: calc(100vh - 180px);
|
|
|
.row {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
cursor: pointer;
|
|
|
width: 100%;
|
|
|
height: 30%;
|
|
|
- text-align: center;
|
|
|
margin-bottom: 25px;
|
|
|
& > img {
|
|
|
max-width: 164px;
|
|
|
+ max-height: 164px;
|
|
|
object-fit: cover;
|
|
|
height: calc(100% - 30px);
|
|
|
}
|
|
@@ -404,7 +422,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
// 右侧菜单栏
|
|
|
-@wh: 22px;
|
|
|
+@wh: 44px;
|
|
|
@margin: 0px;
|
|
|
#play,
|
|
|
#pause {
|