基于Three.js实现360度全景图片
程序员文章站
2022-05-26 10:58:04
three.js 是一款运行在浏览器中的3d引擎, 处理三维效果。在一些相机的官网首页中,经常有一张图在旋转,图上面悬浮着文字。这种效果是如何做出来的呢?先看效果,再讲解。...
three.js 是一款运行在浏览器中的3d引擎, 处理三维效果。在一些相机的官网首页中,经常有一张图在旋转,图上面悬浮着文字。这种效果是如何做出来的呢?先看效果,再讲解。
1).建立一个java web 工程(或者其他工程), 因为three.js 的全景图要通过服务端浏览(安全的考虑)
2).在上面的结构中,只有css中的index.css是自定义的,其余css和js都属于three.js自带的工具文件。包含图片在内,已经上传资源了,点击此处下载。
3).index.jsp
<%@ page language="java" import="java.util.*" pageencoding="utf-8"%> <% string path = request.getcontextpath(); string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/"; %> <!doctype html> <html lang="zh"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>基于three.js的360度全景图片</title> <link rel="stylesheet" type="text/css" href="css/normalize.css" /> <link rel="stylesheet" type="text/css" href="css/default.css" > <link rel="stylesheet" type="text/css" href="css/index.css" > <script src="js/three.min.js"></script> <script src="js/photo-sphere-viewer.min.js"></script> </head> <body> <div class="container"> <div class="description"> <h1>苑中遇雪</h1> <p> 紫禁仙舆诘旦来,青旂遥倚望春台。</p> <p>不知庭霰今朝落,疑是林花昨夜开。</p> </div> <div id="my-pano" class="pano"></div> </div> </body> <script> window.onload = function() { var div = document.getelementbyid('my-pano'); var psv = new photosphereviewer({ // panorama, given in base 64 panorama: 'images/snow.jpg', // container container: div, autoload:true, // deactivate the animation time_anim: 2000, // display the navigation bar navbar: true, // resize the panorama size: { width: '70%', height: 700 } }); }; </script> </html>
4).index.css
body{ text-align:center} .container { margin:0 auto; } .pano { margin:0 auto; z-index:1; } .description { width:400px; left:350px; margin-top:40px; z-index:100; position:absolute; float:left; } .description h1 { font-size:40px; color:#fff } .description p { font-size:22px; color:#fff }
5).根据实际应用在浏览器测试,全景图可自动旋转、可鼠标拖拽转动、可全屏
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 结合.net框架在C#派生类中触发基类事件及实现接口事件
下一篇: C#提高编程能力的50个要点总结