index.html 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>three.js - Javascript 3D library</title>
  6. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  7. <style>
  8. @font-face {
  9. font-family: 'inconsolata';
  10. src: url('files/inconsolata.woff') format('woff');
  11. font-weight: normal;
  12. font-style: normal;
  13. }
  14. * {
  15. box-sizing: border-box;
  16. }
  17. body {
  18. background-color: #ffffff;
  19. margin: 0px;
  20. font-family: 'inconsolata';
  21. font-size: 15px;
  22. line-height: 18px;
  23. color: #555;
  24. }
  25. h1 {
  26. margin-top: 30px;
  27. margin-bottom: 30px;
  28. margin-left: 20px;
  29. font-size: 25px;
  30. font-weight: normal;
  31. }
  32. h2 {
  33. color: #999;
  34. font-size: 18px;
  35. font-weight: normal;
  36. margin-top: 5px;
  37. margin-bottom: 30px;
  38. }
  39. hr {
  40. border: 0px;
  41. height: 1px;
  42. background-color: #ddd;
  43. margin: 30px 0px;
  44. }
  45. sup {
  46. position: relative;
  47. margin-left: 5px;
  48. font-size: 15px;
  49. top: -0.5em;
  50. vertical-align: top;
  51. }
  52. a {
  53. color: #2194CE;
  54. text-decoration: none;
  55. }
  56. a:hover {
  57. text-decoration: underline;
  58. }
  59. #panel {
  60. position: fixed;
  61. left: 0px;
  62. top: 0px;
  63. bottom: 0px;
  64. width: 180px;
  65. background: #ffffff;
  66. }
  67. #panel #content {
  68. padding: 0px 20px;
  69. }
  70. #panel img {
  71. outline: 1px solid #ccc;
  72. vertical-align: middle;
  73. }
  74. #panel #editor {
  75. margin-top: 30px;
  76. text-align: center;
  77. }
  78. #panel #resource {
  79. text-align: center;
  80. }
  81. #panel #book {
  82. margin-top: 20px;
  83. text-align: center;
  84. }
  85. #viewer {
  86. position: absolute;
  87. top: 0px;
  88. right: 0px;
  89. left: 180px;
  90. padding: 28px 20px;
  91. }
  92. #viewer #submit {
  93. position: absolute;
  94. top: 32px;
  95. right: 20px;
  96. }
  97. #viewer #projects a {
  98. display: block;
  99. width: 200px;
  100. height: 150px;
  101. float: left;
  102. }
  103. #viewer #projects img {
  104. width: 100%;
  105. height: 100%;
  106. }
  107. #viewer #projects img:hover {
  108. opacity: 0.75;
  109. }
  110. /* mobile */
  111. #expandButton {
  112. display: none;
  113. position: absolute;
  114. right: 20px;
  115. top: 12px;
  116. width: 32px;
  117. height: 32px;
  118. }
  119. #expandButton span {
  120. height: 2px;
  121. background-color: #2194CE;
  122. width: 16px;
  123. position: absolute;
  124. left: 8px;
  125. top: 10px;
  126. }
  127. #expandButton span:nth-child(1) {
  128. top: 16px;
  129. }
  130. #expandButton span:nth-child(2) {
  131. top: 22px;
  132. }
  133. @media all and ( max-width: 640px ) {
  134. h1 {
  135. margin-top: 20px;
  136. margin-bottom: 20px;
  137. }
  138. h2 {
  139. margin-bottom: 20px;
  140. }
  141. #panel {
  142. position: absolute;
  143. left: 0;
  144. top: 0;
  145. height: 480px;
  146. width: 100%;
  147. right: 0;
  148. z-index: 100;
  149. overflow: hidden;
  150. border-bottom: 1px solid #dedede;
  151. }
  152. #content {
  153. position: absolute;
  154. left: 0;
  155. top: 60px;
  156. right: 0;
  157. bottom: 0;
  158. font-size: 17px;
  159. line-height: 22px;
  160. text-align: center;
  161. overflow: auto;
  162. }
  163. #viewer {
  164. position: absolute;
  165. left: 0;
  166. top: 56px;
  167. width: 100%;
  168. height: calc(100% - 56px);
  169. overflow: auto;
  170. }
  171. #expandButton {
  172. display: block;
  173. }
  174. #panel.collapsed {
  175. height: 56px;
  176. }
  177. }
  178. </style>
  179. </head>
  180. <body>
  181. <script src="//cdn.webglstats.com/stat.js" defer="defer" async="async"></script>
  182. <script type="text/javascript">
  183. var _gaq = _gaq || [];
  184. _gaq.push(['_setAccount', 'UA-86951-15']);
  185. _gaq.push(['_trackPageview']);
  186. (function() {
  187. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  188. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  189. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  190. })();
  191. </script>
  192. <div id="panel" class="collapsed">
  193. <h1>three.js<sup><a href="http://github.com/mrdoob/three.js/releases">r97</a></sup></h1>
  194. <a id="expandButton" href="#">
  195. <span></span>
  196. <span></span>
  197. <span></span>
  198. </a>
  199. <div id="content">
  200. <a href="docs/index.html#manual/introduction/Creating-a-scene">documentation</a><br />
  201. <a href="examples/">examples</a><br /><br />
  202. <a href="https://github.com/mrdoob/three.js/archive/master.zip">download</a><br /><br />
  203. <a href="https://github.com/mrdoob/three.js/">source code</a><br />
  204. <a href="https://stackoverflow.com/questions/tagged/three.js">questions</a><br />
  205. <a href="https://discourse.threejs.org/">forum</a><br />
  206. <a href="http://webchat.freenode.net/?channels=three.js">irc</a><br />
  207. <a href="https://threejs-slack.herokuapp.com">slack</a><br />
  208. <a href="https://plus.google.com/+ThreejsOrg">google+</a>
  209. <div id="editor">
  210. <a href="editor/"><img src="files/editor.png" width="127" height="89" /></a>
  211. </div>
  212. <hr />
  213. <div id="resource">
  214. <script>
  215. var resources = [
  216. '<a href="https://www.udacity.com/course/interactive-3d-graphics--cs291" target="_blank"><img src="files/udacity.png" width="121" height="152" /></a>',
  217. '<a href="http://davidscottlyons.com/threejs-intro/" target="_blank"><img src="files/intro.png" width="121" height="106" /></a>'
  218. ];
  219. document.write( resources[ Math.floor( Math.random() * resources.length ) ] );
  220. </script>
  221. </div>
  222. <div id="book">
  223. <script>
  224. var books = [
  225. '<a href="http://shop.oreilly.com/product/0636920024729.do" target="_blank"><img src="files/books/webgl.png" width="100" height="132" /></a>',
  226. '<a href="https://www.packtpub.com/web-development/learning-threejs-javascript-3d-library-webgl-second-edition" target="_blank"><img src="files/books/learning-threejs-javascript-3d-library-webgl-second.png" width="100" height="123" /></a>',
  227. '<a href="https://www.packtpub.com/game-development/game-development-threejs" target="_blank"><img src="files/books/game-development-threejs.png" width="100" height="123" /></a>',
  228. '<a href="https://www.packtpub.com/web-development/threejs-essentials" target="_blank"><img src="files/books/threejs-essentials.png" width="100" height="124" /></a>',
  229. '<a href="https://www.packtpub.com/web-development/threejs-cookbook" target="_blank"><img src="files/books/threejs-cookbook.png" width="100" height="123" /></a>'
  230. ];
  231. document.write( books[ Math.floor( Math.random() * books.length ) ] );
  232. </script>
  233. </div>
  234. </div>
  235. </div>
  236. <script>
  237. var panel = document.getElementById( 'panel' );
  238. var expandButton = document.getElementById( 'expandButton' );
  239. expandButton.addEventListener( 'click', function ( event ) {
  240. panel.classList.toggle( 'collapsed' );
  241. event.preventDefault();
  242. } );
  243. </script>
  244. <div id="viewer">
  245. <h2>featured projects</h2>
  246. <a id="submit" href="https://docs.google.com/forms/d/e/1FAIpQLSfrfc5cKz5HlWOYuYKP4igo0U0iUNtacfIwM54WEYXReJOO2Q/viewform">submit project</a>
  247. <div id="projects">
  248. <!-- July 2018 -->
  249. <a href="https://vr.with.in/" target="_blank"><img src="files/projects/within.png"></a>
  250. <a href="https://demos.littleworkshop.fr/track" target="_blank"><img src="files/projects/track.png"></a>
  251. <!-- June 2018 -->
  252. <a href="https://heraclosgame.com/" target="_blank"><img src="files/projects/heraclos.png"></a>
  253. <a href="http://goinghome.302chanwoo.com/" target="_blank"><img src="files/projects/goinghome.png"></a>
  254. <a href="http://oatthegoat.co.nz/" target="_blank"><img src="files/projects/oatthegoat.png"></a>
  255. <!-- May 2018 -->
  256. <a href="http://mathis-biabiany.fr/" target="_blank"><img src="files/projects/mathis-biabiany.png"></a>
  257. <a href="https://worlddraw.withgoogle.com/" target="_blank"><img src="files/projects/worlddraw.png"></a>
  258. <!-- January 2018 -->
  259. <a href="http://dddance.party/" target="_blank"><img src="files/projects/dddance.png"></a>
  260. <a href="http://demos.littleworkshop.fr/infinitown" target="_blank"><img src="files/projects/infinitown.png"></a>
  261. <a href="http://taotajima.jp/" target="_blank"><img src="files/projects/taotajima.png"></a>
  262. <!-- November 2017 -->
  263. <a href="https://poly.google.com/" target="_blank"><img src="files/projects/poly.png"></a>
  264. <a href="http://bertrandcandas.com/" target="_blank"><img src="files/projects/bertrandcandas.png"></a>
  265. <a href="https://hajimewatanabe.jp/portfolio/" target="_blank"><img src="files/projects/hajimewatanabe.png"></a>
  266. <a href="https://normanvr.com/" target="_blank"><img src="files/projects/normanvr.png"></a>
  267. <a href="http://www.nationalgeographic.com/science/2017/09/cassini-saturn-nasa-3d-grand-tour/" target="_blank"><img src="files/projects/cassinigrandtour.png"></a>
  268. <!-- October 2017 -->
  269. <a href="http://playdoh-lagaleriedesespeces.com/en/" target="_blank"><img src="files/projects/lagaleriedesespeces.png"></a>
  270. <!-- September 2017 -->
  271. <a href="https://alexanderperrin.com.au/paper/shorttrip/" target="_blank"><img src="files/projects/shorttrip.png"></a>
  272. <a href="https://experiments.withgoogle.com/webvr/inside-music/view/" target="_blank"><img src="files/projects/insidemusic.png"></a>
  273. <a href="http://vr.ff.com/us/" target="_blank"><img src="files/projects/ff.png"></a>
  274. <!-- August 2017 -->
  275. <a href="https://tonite.dance/" target="_blank"><img src="files/projects/dancetonite.png"></a>
  276. <!-- July 2017 -->
  277. <a href="https://emmitfenn.com/" target="_blank"><img src="files/projects/emmitfenn.png"></a>
  278. <a href="http://www.nationalgeographic.com/science/2016/11/exploring-mars-map-panorama-pictures/" target="_blank"><img src="files/projects/rewindtheredplanet.png"></a>
  279. <a href="https://panic.com/transmit/" target="_blank"><img src="files/projects/transmit5.png"></a>
  280. <a href="http://changegout.com/" target="_blank"><img src="files/projects/changegout.png"></a>
  281. <a href="http://showroom.littleworkshop.fr/" target="_blank"><img src="files/projects/webvrshowroom.png"></a>
  282. <a href="https://beinternetawesome.withgoogle.com/interland" target="_blank"><img src="files/projects/interland.png"></a>
  283. <a href="http://www.larsberg.net/" target="_blank"><img src="files/projects/larsberg.png"></a>
  284. <a href="http://www.nationalgeographic.com/magazine/2017/06/nodosaur-3d-interactive-dinosaur-fossil/" target="_blank"><img src="files/projects/resurrectingadragon.png"></a>
  285. <a href="http://letsplay.ouigo.com/" target="_blank"><img src="files/projects/ouigo.png"></a>
  286. <a href="https://nunustudio.org/" target="_blank"><img src="files/projects/nunustudio.png"></a>
  287. <a href="https://moments.epic.net/" target="_blank"><img src="files/projects/moments.png"></a>
  288. <a href="https://with.in/watch/under-neon-lights/" target="_blank"><img src="files/projects/neonlights.png"></a>
  289. <a href="http://vrdust.org.uk/" target="_blank"><img src="files/projects/vrdust.png"></a>
  290. <a href="https://3dc.io/" target="_blank"><img src="files/projects/3dc.png"></a>
  291. <a href="http://lab.samsy.ninja/" target="_blank"><img src="files/projects/samsylab.png"></a>
  292. <a href="http://www.veilhymn.com/" target="_blank"><img src="files/projects/veilhymn.png"></a>
  293. <a href="https://2050.earth/" target="_blank"><img src="files/projects/earth2050.png"></a>
  294. <a href="http://anagram.paris/" target="_blank"><img src="files/projects/anagram.png"></a>
  295. <a href="http://campoallecomete.it/" target="_blank"><img src="files/projects/campoallecomete.png"></a>
  296. <a href="https://saydnaya.amnesty.org/" target="_blank"><img src="files/projects/saydnaya.png"></a>
  297. <a href="https://weather.withspotify.com/" target="_blank"><img src="files/projects/climatune.png"></a>
  298. <a href="http://topotopo.io/" target="_blank"><img src="files/projects/topotopo.png"></a>
  299. <a href="http://www.welcometofillory.com/" target="_blank"><img src="files/projects/fillory.png"></a>
  300. <a href="http://www.5572320.jp/mu/" target="_blank"><img src="files/projects/5572320.png"></a>
  301. <a href="https://lucyhardcastle-thefifthsense.i-d.co/en_gb/" target="_blank"><img src="files/projects/lucyhardcastle.png"></a>
  302. <a href="http://www.acsl.co.jp/" target="_blank"><img src="files/projects/acsl.png"></a>
  303. <a href="http://christmasexperiments.com/" target="_blank"><img src="files/projects/christmasexperiments2016.png"></a>
  304. <a href="https://throughthedark.withgoogle.com/" target="_blank"><img src="files/projects/throughthedark.png"></a>
  305. <a href="https://paperplanes.world/" target="_blank"><img src="files/projects/paperworld.png"></a>
  306. <a href="http://www.robertadicamerino.com/" target="_blank"><img src="files/projects/robertadicamerino.png"></a>
  307. <a href="https://facebook.github.io/react-vr/" target="_blank"><img src="files/projects/reactvr.png"></a>
  308. <a href="https://predictiveworld.watchdogs.com/en/" target="_blank"><img src="files/projects/predictiveworld.png"></a>
  309. <a href="http://www.deprogrammed.org/" target="_blank"><img src="files/projects/deprogrammed.png"></a>
  310. <a href="http://www.gsmlondon.ac.uk/global-oil-map/" target="_blank"><img src="files/projects/globaloilmap.png"></a>
  311. <a href="http://analysis.4sceners.de/" target="_blank"><img src="files/projects/analysis.png"></a>
  312. <!-- <a href="https://kuva.io/" target="_blank"><img src="files/projects/kuva.png"></a> -->
  313. <a href="https://tkmh.me/" target="_blank"><img src="files/projects/tkmh.png"></a>
  314. <a href="https://masteredfromchaos.com/" target="_blank"><img src="files/projects/masteredfromchaos.png"></a>
  315. <!-- <a href="http://www.apple.com/macos/sierra/" target="_blank"><img src="files/projects/macossierra.png"></a> -->
  316. <a href="http://swissarmyman.com/" target="_blank"><img src="files/projects/swissarmyman.png"></a>
  317. <a href="http://annualreport.airbusgroup.com/" target="_blank"><img src="files/projects/flyingahead.png"></a>
  318. <a href="http://tympanus.net/codrops/2016/04/26/the-aviator-animating-basic-3d-scene-threejs/" target="_blank"><img src="files/projects/aviator.png"></a>
  319. <a href="http://particle-love.com/" target="_blank"><img src="files/projects/particlelove.png"></a>
  320. <a href="https://virtualart.chromeexperiments.com/" target="_blank"><img src="files/projects/virtualart.png"></a>
  321. <a href="http://ludumdare.com/compo/ludum-dare-35/?action=preview&uid=3671" target="_blank"><img src="files/projects/lasertown.png"></a>
  322. <a href="http://www.nowyouseeme.movie/" target="_blank"><img src="files/projects/nowyouseeme.png"></a>
  323. <a href="http://thelawofthejungle.com/" target="_blank"><img src="files/projects/lawjungle.png"></a>
  324. <a href="http://www.360syria.com/" target="_blank"><img src="files/projects/360syria.png"></a>
  325. <a href="http://www.lhbzr.com/" target="_blank"><img src="files/projects/lhbzr.png"></a>
  326. <a href="http://falter.wild.plus/" target="_blank"><img src="files/projects/falter.png"></a>
  327. <a href="https://uniqueflow.me/" target="_blank"><img src="files/projects/uniqueflow.png"></a>
  328. <!-- <a href="http://lafrenchtouch.martell.com/" target="_blank"><img src="files/projects/lafrenchtouch.png"></a> -->
  329. <!-- <a href="http://codeology.braintreepayments.com/" target="_blank"><img src="files/projects/codeology.png"></a> -->
  330. <a href="http://hands.wtf/" target="_blank"><img src="files/projects/handswtf.png"></a>
  331. <a href="http://www.ashortjourney.com/" target="_blank"><img src="files/projects/ashortjourney.png"></a>
  332. <a href="http://homunculus.jp/" target="_blank"><img src="files/projects/homunculus.png"></a>
  333. <a href="http://void-ii.hi-res.net/" target="_blank"><img src="files/projects/voidii.png"></a>
  334. <a href="http://2016.makemepulse.com/" target="_blank"><img src="files/projects/makemepulse2016.png"></a>
  335. <a href="https://aframe.io/" target="_blank"><img src="files/projects/aframe.png"></a>
  336. <a href="http://www.warof1996.com/" target="_blank"><img src="files/projects/warof1996.png"></a>
  337. <a href="http://www.ford.com/cars/mustang/customizer/#!/customize" target="_blank"><img src="files/projects/mustang.png"></a>
  338. <a href="https://kamra.invisi-dir.com/" target="_blank"><img src="files/projects/dejavu.png"></a>
  339. <a href="http://crystallizedskins.com/" target="_blank"><img src="files/projects/crystallizedskins.png"></a>
  340. <a href="http://www.cryptarismission.com/" target="_blank"><img src="files/projects/cryptaris.png"></a>
  341. <a href="http://rainforest.arkivert.no/" target="_blank"><img src="files/projects/rainforest.png"></a>
  342. <a href="http://lacostewinter.seeourwork.cn/en/" target="_blank"><img src="files/projects/lacostewinter.png"></a>
  343. <a href="http://breakthrough.nationalgeographic.com/" target="_blank"><img src="files/projects/breakthrough.png"></a>
  344. <a href="https://robertsspaceindustries.com/starmap" target="_blank"><img src="files/projects/starmap.png"></a>
  345. <a href="http://campaign.au.kddi.com/hello/" target="_blank"><img src="files/projects/warpscreen.png"></a>
  346. <a href="https://www.uberviz.io/" target="_blank"><img src="files/projects/uberviz.png"></a>
  347. <!-- <a href="http://www.porsche.com/microsite/911/usa.aspx#showroom/911-carrera-s/3/3/50/0/0" target="_blank"><img src="files/projects/porsche.png"></a> -->
  348. <a href="http://networkeffect.io/" target="_blank"><img src="files/projects/networkeffect.png"></a>
  349. <a href="http://unseen-music.com/yume/" target="_blank"><img src="files/projects/yume.png"></a>
  350. <a href="https://sparklinlabs.itch.io/superpowers" target="_blank"><img src="files/projects/superpowers.png"></a>
  351. <!-- <a href="https://ds-signatureart.com/" target="_blank"><img src="files/projects/signatureart.png"></a> -->
  352. <a href="http://www.playkeepout.com/" target="_blank"><img src="files/projects/playkeepout.png"></a>
  353. <!-- <a href="http://www.sennheiser-reshapingexcellence.com/" target="_blank"><img src="files/projects/reshapingexcellence.png"></a> -->
  354. <!-- <a href="http://www.orchestredeparis.com/resonance/" target="_blank"><img src="files/projects/resonance.png"></a> -->
  355. <a href="http://www.activation-nodeplus.com/" target="_blank"><img src="files/projects/nodeplus.png"></a>
  356. <a href="http://renaultespace.littleworkshop.fr/" target="_blank"><img src="files/projects/renaultespace.png"></a>
  357. <a href="http://ommexperience.com/" target="_blank"><img src="files/projects/ommexperience.png"></a>
  358. <!-- <a href="https://crazyskills.panasonic.com/" target="_blank"><img src="files/projects/crazyskills.png"></a> -->
  359. <a href="http://brunoquintela.com/" target="_blank"><img src="files/projects/brunoquintela.png"></a>
  360. <a href="http://void.hi-res.net/" target="_blank"><img src="files/projects/void.png"></a>
  361. <a href="http://cabbi.bo/enough/" target="_blank"><img src="files/projects/enough.png"></a>
  362. <!-- <a href="http://www.insidious-movie.net/entertheroom/" target="_blank"><img src="files/projects/entertheroom.png"></a> -->
  363. <a href="http://news-lab-trends-experiment.appspot.com/" target="_blank"><img src="files/projects/newslabtrends.png"></a>
  364. <a href="http://www.dennis.video/" target="_blank"><img src="files/projects/dennis.png"></a>
  365. <a href="http://www.fallen.io/ww2/" target="_blank"><img src="files/projects/fallenio.png"></a>
  366. <a href="http://www.sbs.com.au/theboat/" target="_blank"><img src="files/projects/theboat.png"></a>
  367. <a href="http://www.simonreeves.com/projects/db5/" target="_blank"><img src="files/projects/db5.png"></a>
  368. <!-- <a href="http://rainbowroad.jp/special03/" target="_blank"><img src="files/projects/rainbowroad.png"></a> -->
  369. <a href="http://earth.plus360degrees.com/" target="_blank"><img src="files/projects/earth.png"></a>
  370. <a href="http://phoboslab.org/wipeout/" target="_blank"><img src="files/projects/wipeout.png"></a>
  371. <!-- <a href="http://interactivehaiku.com/lifeisshort/" target="_blank"><img src="files/projects/lifeisshort.png"></a> -->
  372. <a href="http://vaalentin.github.io/2015/" target="_blank"><img src="files/projects/vaalentin.png"></a>
  373. <a href="http://wildflower.resn.co.nz/" target="_blank"><img src="files/projects/wildflower.png"></a>
  374. <a href="http://www.dilladimension.com/" target="_blank"><img src="files/projects/dilladimension.png"></a>
  375. <a href="http://www.clicktorelease.com/code/cruciform/" target="_blank"><img src="files/projects/cruciform.png"></a>
  376. <a href="http://a-way-to-go.com/" target="_blank"><img src="files/projects/waytogo.png"></a>
  377. <!-- <a href="http://www.urbangalaxyonline.com/" target="_blank"><img src="files/projects/urbangalaxyonline.jpg"></a> -->
  378. <!-- <a href="http://www.leiainc.com/" target="_blank"><img src="files/projects/leiainc.png"></a> -->
  379. <a href="http://www.heroforge.com/" target="_blank"><img src="files/projects/heroforge.png"></a>
  380. <!-- <a href="http://www.bullseyesplayground.com/" target="_blank"><img src="files/projects/bullseyesplayground.jpg"></a> -->
  381. <!-- <a href="http://christmasexperiments.com/" target="_blank"><img src="files/projects/christmasexperiments2014.png"></a> -->
  382. <a href="http://cabbi.bo/" target="_blank"><img src="files/projects/cabbibo.png"></a>
  383. <a href="http://thedivergentseries.com/" target="_blank"><img src="files/projects/thedivergentseries.png"></a>
  384. <a href="http://mozvr.com/" target="_blank"><img src="files/projects/mozvr.jpg"></a>
  385. <a href="http://peoplebehindthepixels.com/" target="_blank"><img src="files/projects/peoplebehindthepixels.jpg"></a>
  386. <a href="http://brian.peiris.io/RiftSketch/" target="_blank"><img src="files/projects/riftsketch.jpg"></a>
  387. <a href="http://pablotheflamingo.com/" target="_blank"><img src="files/projects/pablotheflamingo.jpg"></a>
  388. <a href="http://www.shapespark.com/" target="_blank"><img src="files/projects/shapespark.png"></a>
  389. <a href="http://witnessgotham.com/" target="_blank"><img src="files/projects/witnessgotham.jpg"></a>
  390. <a href="http://autodesk360.com/" target="_blank"><img src="files/projects/a360.png"></a>
  391. <!-- <a href="http://willbeatsnoise.com/" target="_blank"><img src="files/projects/gisele.jpg"></a> -->
  392. <a href="http://cityofdrones.io/" target="_blank"><img src="files/projects/cityofdrones.png"></a>
  393. <!-- <a href="https://www.g-star.com/en_nl/newdenimarrivals" target="_blank"><img src="files/projects/newdenimarrivals.png"></a> -->
  394. <a href="https://www.batmanarkhamknight.com/en_US/batmobile" target="_blank"><img src="files/projects/batmanarkhamknight.jpg"></a>
  395. <a href="http://www.potree.org/" target="_blank"><img src="files/projects/potree.jpg"></a>
  396. <a href="http://www.overthetinyhills.com/" target="_blank"><img src="files/projects/overthetinyhills.jpg"></a>
  397. <a href="http://vr.chromeexperiments.com/" target="_blank"><img src="files/projects/cardboard.jpg"></a>
  398. <a href="http://gorescript.com/classic/" target="_blank"><img src="files/projects/gorescript.jpg"></a>
  399. <a href="https://www.google.com/doodles/rubiks-cube" target="_blank"><img src="files/projects/rubiks-cube.jpg"></a>
  400. <a href="http://www.georgeandjonathan.com/" target="_blank"><img src="files/projects/georgeandjonathan.jpg"></a>
  401. <a href="http://www.nike.com/xp/b/genealogyofthefree/zoetrope.html" target="_blank"><img src="files/projects/genealogyofthefree.jpg"></a>
  402. <a href="http://i-remember.fr/en" target="_blank"><img src="files/projects/iremember.png"></a>
  403. <!-- <a href="http://ogreen.special-t.com/en/" target="_blank"><img src="files/projects/ogreen.jpg"></a> -->
  404. <!-- <a href="http://verold.com/" target="_blank"><img src="files/projects/verold.png"></a> -->
  405. <a href="http://carvisualizer.plus360degrees.com/classics/" target="_blank"><img src="files/projects/classics.png"></a>
  406. <!-- <a href="http://photosynth.net/preview" target="_blank"><img src="files/projects/photosynth.png"></a> -->
  407. <!-- <a href="http://helloracer.com/racer-s/" target="_blank"><img src="files/projects/racer-s.jpg"></a> -->
  408. <!-- <a href="http://christmasexperiments.com/2013/" target="_blank"><img src="files/projects/christmasexperiments.jpg"></a> -->
  409. <a href="http://middle-earth.thehobbit.com/" target="_blank"><img src="files/projects/thehobbit.jpg"></a>
  410. <a href="http://kiddisco.asmallgame.com/" target="_blank"><img src="files/projects/kiddisco.jpg"></a>
  411. <!-- <a href="http://gravitymovie.warnerbros.com/" target="_blank"><img src="files/projects/gravity.jpg"></a> -->
  412. <a href="https://www.justareflektor.com/" target="_blank"><img src="files/projects/reflektor.jpg"></a>
  413. <a href="http://clara.io/" target="_blank"><img src="files/projects/clara.png"></a>
  414. <a href="http://hellorun.helloenjoy.com" target="_blank"><img src="files/projects/hellorun.jpg"></a>
  415. <a href="http://acko.net/" target="_blank"><img src="files/projects/acko.jpg"></a>
  416. <!-- <a href="http://advertising.apple.com/" target="_blank"><img src="files/projects/iad.png"></a> -->
  417. <a href="http://cubeslam.com/" target="_blank"><img src="files/projects/cubeslam.jpg"></a>
  418. <!-- <a href="http://hyperlapse.tllabs.io/" target="_blank"><img src="files/projects/hyperlapse.jpg"></a> -->
  419. <!-- <a href="http://chrome.com/maze/" target="_blank"><img src="files/projects/wwmaze.jpg"></a> -->
  420. <!-- <a href="http://antivj.com/paleodictyon_app/" target="_blank"><img src="files/projects/paleodictyon.jpg"></a> -->
  421. <!-- <a href="http://www.findyourwaytooz.com/" target="_blank"><img src="files/projects/findyourwaytooz.jpg"></a> -->
  422. <a href="http://voxeljs.com/" target="_blank"><img src="files/projects/voxeljs.jpg"></a>
  423. <!-- <a href="http://christmasexperiments.com/2012/23/" target="_blank"><img src="files/projects/neverseenthesky.jpg"></a> -->
  424. <!-- <a href="http://www.google.com/zeitgeist/2012/#explore" target="_blank"><img src="files/projects/zeitgeist2012.jpg"></a> -->
  425. <a href="http://lab.sehsucht.de/" target="_blank"><img src="files/projects/zoetrope.jpg"></a>
  426. <a href="http://www.pillandpillow.com/mvsw/site/" target="_blank"><img src="files/projects/mvsw.jpg"></a>
  427. <!-- <a href="http://thecarpandtheseagull.thecreatorsproject.com/" target="_blank"><img src="files/projects/thecarpandtheseagull.jpg"></a> -->
  428. <a href="http://workshop.chromeexperiments.com/stars/" target="_blank"><img src="files/projects/100000stars.jpg"></a>
  429. <!-- <a href="http://theywilleatyou.com/" target="_blank"><img src="files/projects/theywilleatyou.jpg"></a> -->
  430. <!-- <a href="http://blast.hellohikimori.com/" target="_blank"><img src="files/projects/blast.jpg"></a> -->
  431. <a href="http://hexgl.bkcore.com/" target="_blank"><img src="files/projects/hexgl.jpg"></a>
  432. <a href="http://workshop.chromeexperiments.com/projects/armsglobe/" target="_blank"><img src="files/projects/armsglobe.jpg"></a>
  433. <a href="http://carvisualizer.plus360degrees.com/threejs/" target="_blank"><img src="files/projects/carvisualizer.jpg"></a>
  434. <a href="http://www.chromeweblab.com/" target="_blank"><img src="files/projects/chromeweblab.jpg"></a>
  435. <a href="http://lightgraffiti.littlesun.com/" target="_blank"><img src="files/projects/lightgraffiti.jpg"></a>
  436. <!-- <a href="http://www.pajamaclubmusic.com/3d/" target="_blank"><img src="files/projects/tntfortwo.jpg"></a> -->
  437. <a href="http://www.chaostoperfection.com/" target="_blank"><img src="files/projects/chaostoperfection.jpg"></a>
  438. <a href="http://www.sketchpatch.net/labs/livecodelabIntro.html" target="_blank"><img src="files/projects/livecodelab.jpg"></a>
  439. <a href="http://collinhover.github.com/kaiopua/" target="_blank"><img src="files/projects/kaiopua.jpg"></a>
  440. <a href="http://chandlerprall.github.com/Physijs/" target="_blank"><img src="files/projects/physijs.jpg"></a>
  441. <a href="http://www.playmapscube.com/" target="_blank"><img src="files/projects/googlecube.jpg"></a>
  442. <!-- <a href="http://triggerrally.com/" target="_blank"><img src="files/projects/triggerrally.jpg"></a> -->
  443. <!-- <a href="http://yagiz.me/zombiesvscow/" target="_blank"><img src="files/projects/zombiesvscow.jpg"></a> -->
  444. <!-- <a href="http://blackjk3.github.com/threefab/" target="_blank"><img src="files/projects/threefab.jpg"></a> -->
  445. <!-- <a href="http://dl.dropbox.com/u/6213850/WebGL/nyanCat/nyan.html" target="_blank"><img src="files/projects/nyancat.jpg"></a> -->
  446. <a href="http://idflood.github.io/ThreeNodes.js/" target="_blank"><img src="files/projects/threenodes.jpg"></a>
  447. <!-- <a href="http://www.adidas.com/football/uk/pages/f50/" target="_blank"><img src="files/projects/f50.jpg"></a> -->
  448. <!-- <a href="http://lights.helloenjoy.com/" target="_blank"><img src="files/projects/lights.jpg"></a> -->
  449. <a href="http://inear.se/beanstalk/" target="_blank"><img src="files/projects/beanstalk.jpg"></a>
  450. <!-- <a href="http://superfad.com/missioncontrol/" target="_blank"><img src="files/projects/missioncontrol.jpg"></a> -->
  451. <a href="http://www.ro.me/" target="_blank"><img src="files/projects/rome.jpg"></a>
  452. <a href="https://www.chromeexperiments.com/globe" target="_blank"><img src="files/projects/globe.jpg"></a>
  453. <a href="http://helloracer.com/webgl/" target="_blank"><img src="files/projects/helloracer.jpg"></a>
  454. </div>
  455. <script>
  456. // I wish I could do this with CSS
  457. var projects = document.getElementById( 'projects' );
  458. function resize() {
  459. var baseWidth = 200;
  460. var baseHeight = 150;
  461. var fullWidth = projects.clientWidth;
  462. var width = ( fullWidth / ( Math.ceil( fullWidth / baseWidth ) * baseWidth ) ) * baseWidth;
  463. var height = ( width / baseWidth ) * baseHeight;
  464. for ( var i = 0; i < projects.children.length; i ++ ) {
  465. var child = projects.children[ i ];
  466. child.style.width = width + 'px';
  467. child.style.height = height + 'px';
  468. }
  469. }
  470. window.addEventListener( 'resize', resize, false );
  471. resize();
  472. </script>
  473. </div>
  474. </body>
  475. </html>