我是靠谱客的博主 幸福煎蛋,最近开发中收集的这篇文章主要介绍krpano相关笔记,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.krpano 关闭默认底部菜单
文件:skin/vtourskin.xml
找到

set(layer[skin_layer].visible, true); 

修改为

set(layer[skin_layer].visible, false);

2.krpano 关闭切换场景的左右箭头
文件:skin/vtourskin.xml
1).找到

<layer name="skin_btn_prev_fs" keep="true" type="container" align="lefttop"  x="-50" width="40" height="100%" bgcapture="true" alpha="0.0" enabled="false" capture="false" zorder="2" onclick="skin_nextscene_loop(-1);" onhover="tween(alpha,1.0);" onout="tween(alpha,0.25);" ondown.touch="onhover();" onup.touch="onout();">
		<layer name="skin_btn_prev_fs_icon" style="skin_base" crop="0|64|64|64"  align="center" scale="0.5" enabled="false" />
</layer>
<layer name="skin_btn_next_fs" keep="true" type="container" align="righttop" x="-50" width="40" height="100%" bgcapture="true" alpha="0.0" enabled="false" capture="false" zorder="2" onclick="skin_nextscene_loop(+1);" onhover="tween(alpha,1.0);" onout="tween(alpha,0.25);" ondown.touch="onhover();" onup.touch="onout();">
		<layer name="skin_btn_next_fs_icon" style="skin_base" crop="64|64|64|64" align="center" scale="0.5" enabled="false" />
</layer>

修改为

<layer name="skin_bt

最后

以上就是幸福煎蛋为你收集整理的krpano相关笔记的全部内容,希望文章能够帮你解决krpano相关笔记所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(33)

评论列表共有 0 条评论

立即
投稿
返回
顶部