0

我不确定为什么没有图像出现。我正在使用端口 5050 的 Visual Studio 代码实时服务器扩展。

这是整个项目的源代码:https ://github.com/chamx2/Web360Sample.git

这是我的 index.html

<!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    
        <link rel="stylesheet" href="css/style.css" />
        <title>Web360 Sample</title>
    </head>
    <body>
    
        <h1>Welcome to my 360 sample website</h1>
        <p>Please enjoy the view</p>
        <div class="pano"></div>
    
    
     
        
    </body>
    <script type="javascript" src="js/main.js"></script>
    <!-- <script type="javascript" src="js/three.js"></script> -->
    <script type="javascript" src="js/three.min.js"></script>
    <script type="javascript" src="js/three.module.js"></script>
    <!-- <script type="javascript" src="js/pano.js"></script> -->
    <script type="javascript" src="js/panolens.min.js"></script>
    </html>

这是我的 style.css 代码

@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro&family=Literata");

h1 
{
    font-size: 4.5em;
    text-align: center;
    margin: 35px 0;
    font-family: 'Crimson Pro', serif;
}

p
{
    font-size: 16px;
    max-width: 600px;
    margin: 35px auto;
    font-family: 'Literata', serif;
}

.pano
{
    width: 100%;
    height: 600px;
}

这是我的 main.js 代码

const panoImage = document.querySelector('.pano');
const samplePanoPath = '../images/pano1.jpg';


const panorama = new PANOLENS.ImagePanorama(samplePanoPath);
const viewer = new PANOLENS.Viewer({
    container:panoImage,
    autoRotate:true,
    autoRotateSpeed: .5

});

viewer.add(panorama);

我想知道出了什么问题,我的控制台上没有任何错误,除了警告:“审核 navigator.userAgent、navigator.appVersion 和 navigator.platform 的使用”我认为不相关或者我应该查看进入。

4

0 回答 0