Skip to content

Commit

Permalink
Add new project
Browse files Browse the repository at this point in the history
  • Loading branch information
Hau Trung Nguyen committed Dec 29, 2021
1 parent 6bce849 commit eaaa5cb
Show file tree
Hide file tree
Showing 9 changed files with 3,647 additions and 0 deletions.
21 changes: 21 additions & 0 deletions css/style.css
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;
}
Binary file added images/project-big-item-02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/project-big-item-05.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions index.html
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>
Loading

0 comments on commit eaaa5cb

Please sign in to comment.