我正在维护一个使用Delight VR插件在Android手机上播放VR内容的网站。几个月前一切都很好。但是,现在使用陀螺仪的魔术窗口和VR模式在Google chrome浏览器上不起作用。这是实现播放器的代码。
<script src="//cdn.delight-vr.com/latest/dl8-my_key.js" async></script>
<dl8-video id="dl8-<?php echo $item->gallery_id;?>" class="dl8view dl-vr"
title="<?php echo $item->gallery_name;?>" format="MONO_360"
poster="<?php echo
UPLOADURL.'gallery/'.$item->gallery_item_poster;?>" display-mode="inline"
loop>
<source src="<?php echo
UPLOADURL.'gallery/'.$item->gallery_item_name;?>" type="video/mp4" />
<source src="<?php echo
UPLOADURL.'gallery/'.$item->gallery_item_name;?>" type="video/webm" />
</dl8-video>
我该如何解决这个问题?我需要在其中进行任何代码更改吗?