solar-system
Version:
Solar System with Threejs
30 lines (23 loc) • 1.09 kB
HTML
<html>
<head>
<meta charset="utf-8">
<title>Solar System Three Project</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<script type="text/javascript" src="../bower_components/underscore/underscore-min.js"></script>
<script type="text/javascript" src="../bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="../bower_components/three.js/build/three.min.js"></script>
<script type="text/javascript" src="../bower_components/three.js/examples/js/controls/TrackballControls.js"></script>
<script type="text/javascript" src="../bower_components/three.js/examples/js/libs/stats.min.js"></script>
<script type="text/javascript" src="../bower_components/three.js/examples/js/libs/require.js"></script>
<script type="text/javascript" src="../dist/solar-system.min.js"></script>
<script>
require(['solar-system'], function three(SolarSystem) {
SolarSystem.init();
});
</script>
</body>
</html>