-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hau Trung Nguyen
committed
Dec 29, 2021
1 parent
6bce849
commit eaaa5cb
Showing
9 changed files
with
3,647 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
body { | ||
margin: 0; | ||
overflow: hidden; | ||
background-color: white; | ||
} | ||
|
||
canvas { | ||
background-color: white; | ||
} | ||
|
||
#instructions { | ||
position: absolute; | ||
color: #000; | ||
bottom: 0; | ||
padding-bottom: 6px; | ||
font-family: sans-serif; | ||
font-size: 20px; | ||
width: 100%; | ||
text-align: center; | ||
pointer-events: none; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>3D Shader Image Transition</title> | ||
<link rel="stylesheet" href="css/style.css"> | ||
</head> | ||
|
||
<body> | ||
<div id="three-container"></div> | ||
<div id="instructions"> | ||
Press Hold Right Mouse Button and drag to control the animation! | ||
</div> | ||
<script src='js/three.min.js'></script> | ||
<script src='js/TweenMax.min.js'></script> | ||
<script src='js/bas.js'></script> | ||
<script src='js/OrbitControls.js'></script> | ||
<script src="js/script.js"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.