html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="https://cdn.jsdelivr.net/npm/three@0.145/build/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.145/examples/js/controls/OrbitControls.js"></script>
</head>
<body>
</body>
<script>
//import * as THREE from 'three';
//import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls';
let cw=400
let ch=700
const scene=new THREE.Scene();
const camera=new THREE.PerspectiveCamera(75,cw/ch,0.1,1000);
camera.position.z=8
camera.position.y=1
const renderer=new THREE.WebGLRenderer();
document.body.appendChild(renderer.domElement)
css
css
1
2
3
4
5
body,*{
margin:0;
overflow:hidden;
background-color:black;
}
js
js
1
BROWSER
Console
Uruchom