|
|
@@ -30,7 +30,7 @@
|
|
|
>
|
|
|
<a>
|
|
|
<img
|
|
|
- title=""
|
|
|
+ title="自动漫游"
|
|
|
:src="require('@/assets/images/icon/play.png')"
|
|
|
width="24"
|
|
|
height="24"
|
|
|
@@ -69,7 +69,7 @@
|
|
|
@click="isGuide = !isGuide"
|
|
|
id="pullTab"
|
|
|
rel="tooltip"
|
|
|
- title=""
|
|
|
+ title="场景导览"
|
|
|
>
|
|
|
<img
|
|
|
class="icon icon-inside"
|
|
|
@@ -82,6 +82,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
+ title="全景漫游"
|
|
|
data-original-title="全景漫游"
|
|
|
id="gui-modes-inside"
|
|
|
rel="tooltip"
|
|
|
@@ -97,6 +98,7 @@
|
|
|
/>
|
|
|
</div>
|
|
|
<div
|
|
|
+ title="迷你漫游"
|
|
|
data-original-title="迷你模型"
|
|
|
id="gui-modes-dollhouse"
|
|
|
rel="tooltip"
|
|
|
@@ -116,7 +118,7 @@
|
|
|
data-original-title="俯视图"
|
|
|
id="gui-modes-floorplan"
|
|
|
rel="tooltip"
|
|
|
- title=""
|
|
|
+ title="顶部俯视"
|
|
|
>
|
|
|
<img
|
|
|
class="icon icon-inside"
|
|
|
@@ -129,6 +131,26 @@
|
|
|
|
|
|
/>
|
|
|
</div>
|
|
|
+ <!-- 音乐 -->
|
|
|
+ <!-- <div id="volume" @click="switchBGM" class="ui-icon bgandshare wide">
|
|
|
+ <div>
|
|
|
+ <img :src="require('@/assets/images/icon/musicon.png')" />
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
+ <div
|
|
|
+ style="display:none;"
|
|
|
+ @click="switchBGM"
|
|
|
+ id="myMoMu"
|
|
|
+ data-original-title="音乐"
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ class="icon icon-inside"
|
|
|
+ :src="require('@/assets/images/icon/musicoff.png')"
|
|
|
+ title="关闭音乐"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
<div
|
|
|
data-original-title="VR"
|
|
|
id="vr"
|
|
|
@@ -187,6 +209,7 @@
|
|
|
</div>
|
|
|
<div class="container"></div>
|
|
|
</div>
|
|
|
+
|
|
|
<div id="volume" @click="switchBGM" class="ui-icon bgandshare wide">
|
|
|
<div>
|
|
|
<img :src="require('@/assets/images/icon/musicon.png')" />
|
|
|
@@ -215,7 +238,7 @@
|
|
|
class="ui-icon wide"
|
|
|
data-placement="top"
|
|
|
rel="tooltip"
|
|
|
- title="{[{ VIEW_FULLSCREEN }]}"
|
|
|
+ title="全屏"
|
|
|
>
|
|
|
<a>
|
|
|
<img :src="require('@/assets/images/icon/fullscreen.png')" />
|
|
|
@@ -227,7 +250,7 @@
|
|
|
class="ui-icon wide"
|
|
|
data-placement="top"
|
|
|
rel="tooltip"
|
|
|
- title="{[{ EXIT_FULLSCREEN }]}"
|
|
|
+ title="关闭全屏"
|
|
|
style="display: none"
|
|
|
>
|
|
|
<a>
|
|
|
@@ -239,6 +262,12 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- 右侧菜单栏 -->
|
|
|
+ <div class="rightTab">
|
|
|
+ <div>
|
|
|
+ <img src="" alt="">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -268,7 +297,17 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
-@wh: 54px;
|
|
|
+.rightTab{
|
|
|
+ position: fixed;
|
|
|
+ right: 0;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ width: 110px;
|
|
|
+ height: 465px;
|
|
|
+ background-color: rgba(0,0,0,.5);
|
|
|
+}
|
|
|
+// 右侧菜单栏
|
|
|
+@wh: 22px;
|
|
|
@margin: 0px;
|
|
|
#play,
|
|
|
#pause {
|
|
|
@@ -309,15 +348,33 @@ export default {
|
|
|
}
|
|
|
|
|
|
#gui-fullscreen img{
|
|
|
- width:50px;
|
|
|
+ width:22px;
|
|
|
|
|
|
}
|
|
|
-
|
|
|
+#volume{
|
|
|
+ width: 50px;
|
|
|
+ padding: 10px;
|
|
|
+ background-color: rgba(0,0,0,.5) !important;
|
|
|
+ border-radius: 50%;
|
|
|
+}
|
|
|
+#gui-fullscreen{
|
|
|
+ background-color: rgba(0,0,0,.5) !important;
|
|
|
+ border-radius: 50%;
|
|
|
+}
|
|
|
+#gui-fullscreen-exit{
|
|
|
+ width: 50px;
|
|
|
+ background-color: rgba(0,0,0,.5) !important;
|
|
|
+ border-radius: 50%;
|
|
|
+}
|
|
|
+#gui-fullscreen-exit img {
|
|
|
+ width: 22px !important;
|
|
|
+}
|
|
|
.bgandshare {
|
|
|
background: none !important;
|
|
|
- margin-right: 20px!important;
|
|
|
+ // margin-right: 20px!important;
|
|
|
> div {
|
|
|
- width: 50px!important;
|
|
|
+ width: 22px!important;
|
|
|
+ margin-left: 3px;
|
|
|
cursor: pointer;
|
|
|
img {
|
|
|
width: 100%;
|
|
|
@@ -326,7 +383,19 @@ export default {
|
|
|
}
|
|
|
|
|
|
@media only screen and (max-width: 487px) {
|
|
|
- @wh: 56px;
|
|
|
+ #myMoMu{
|
|
|
+ display: block !important;
|
|
|
+}
|
|
|
+#myMoMu img {
|
|
|
+ margin-left: 12px;
|
|
|
+}
|
|
|
+.viewContainer{
|
|
|
+ background-color: rgba(0,0,0,.7);
|
|
|
+ padding: 15px 0 10px;
|
|
|
+ border-radius: 50px;
|
|
|
+}
|
|
|
+
|
|
|
+ @wh: 22px;
|
|
|
@margin:10px;
|
|
|
#play,
|
|
|
#pause {
|
|
|
@@ -359,10 +428,11 @@ export default {
|
|
|
}
|
|
|
|
|
|
.bgandshare {
|
|
|
+ display: none !important;
|
|
|
display: flex;
|
|
|
position: fixed;
|
|
|
- top: 2%;
|
|
|
- right: 6px;
|
|
|
+ left: 50px;
|
|
|
+ bottom:25px;
|
|
|
flex-direction: column;
|
|
|
margin-right: 10px!important;
|
|
|
> div {
|
|
|
@@ -372,6 +442,9 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ #volume{
|
|
|
+ background-color: transparent !important;
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
</style>
|