我已经创建了一个球形全景在Photoshop,我可以拖动和看到一个完整的360视图,但我必须在Photoshop。如何将其传输到web,以便用户可以使用javascript单击并拖动视图?(我确实可以访问5.5,但如果该程序更适合这个应用程序,我没有使用它的经验),也请注意,我不能使用服务器端脚本。请只请客户端脚本
编辑-如果有一个免费的程序或基于javascript的版本,这是我正在寻找的。我宁愿远离付费节目和免费程序水印形象。我不介意简单的信用以下的主要形象。
发布于 2011-12-10 07:50:49
发布于 2013-03-21 02:27:59
这是我几天前的问题,但现在不是了。通过插件(Flash、QTVR,甚至Java )或非插件- HTML5,您可以在网页上显示它。
我个人推荐HTML5,因为这显然是网络的未来。当涉及到HTML5时,您仍然有许多选择:
- Cubic map panorama I: Client browser needs to support WebGL (it means iPhone cannot view this page), and you need to slice the panorama into 6 cube faces. More info [here](https://github.com/mrdoob/three.js/blob/master/examples/canvas_geometry_panorama.html)
- Cubic map panorama II: Client browser dont need to support WebGL (iPhone can view), every rotate/transform via CSS3d, you still need to slice the panorama into 6 cube faces. More info [here](https://github.com/mrdoob/three.js/blob/master/examples/css3d_panorama.html).
- Equirectangular panorama: Client browser needs to support WebGL. All you need is an equirectangular image. More info [here](https://github.com/mrdoob/three.js/blob/master/examples/webgl_panorama_equirectangular.html).
- This is part of the commercial software "pano2vr". This software could slice your equirectangular image into 6 cube face images and present it in a html page, everything automatically. Don't need WebGL, iPhone can view it. More info [here](http://gardengnomesoftware.com/pano2vr.php).
在HTML5中有更多的选择,我不记得了。不管怎样,希望这对你有帮助。:)
发布于 2011-12-08 00:54:21
如果您已经缝合/组装了您的图像,您可能会查看krpano全景观景器。这是一个显示全景的Flash应用程序。它也可以在Javascript中获得。你可以在360城市上看到它的动作。
https://stackoverflow.com/questions/8424727
复制相似问题