This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a.myhost.com { | |
| tls off | |
| root /var/www/ | |
| proxy / localhost:8091 | |
| log log/access.a.log | |
| } | |
| b.myhost.com { | |
| tls off | |
| root /var/www/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from "react"; | |
| import { PropertyControls, ControlType, Override } from "framer"; | |
| import { data } from "./Examples"; | |
| const style: React.CSSProperties = { | |
| height: "100%", | |
| display: "flex", | |
| alignItems: "center", | |
| justifyContent: "center", | |
| textAlign: "center", | |
| color: "#8855FF", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="http://www.threejs.org/build/three.min.js"></script> | |
| <script src="http://www.threejs.org/examples/js/renderers/Projector.js"></script> | |
| <script src="http://www.threejs.org/examples/js/renderers/CanvasRenderer.js"></script> | |
| <script> | |
| var mouseX = 0, mouseY = 0, | |
| windowHalfX = window.innerWidth / 2, | |
| windowHalfY = window.innerHeight / 2, |