mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
68 lines
2.6 KiB
HTML
68 lines
2.6 KiB
HTML
<html>
|
|
<head>
|
|
<title>Camera Fly Easing</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="./fly.js" type="module"></script>
|
|
<link rel="stylesheet" href="../../css/og.css" type="text/css" />
|
|
<style>
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
button {
|
|
margin: 5px;
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="earth" style="position: absolute; width: 100%; height: 100%"></div>
|
|
<div style="position: absolute; margin: 10px;">
|
|
<button id="SineIn">Sine In</button>
|
|
<button id="SineOut">Sine Out</button>
|
|
<button id="SineInOut">Sine In Out</button>
|
|
<br />
|
|
<button id="QuadIn">Quad In</button>
|
|
<button id="QuadOut">Quad Out</button>
|
|
<button id="QuadInOut">Quad In Out</button>
|
|
<br />
|
|
<button id="CubicIn">Cubic In</button>
|
|
<button id="CubicOut">Cubic Out</button>
|
|
<button id="CubicInOut">Cubic In Out</button>
|
|
<br />
|
|
<button id="QuartIn">Quart In</button>
|
|
<button id="QuartOut">Quart Out</button>
|
|
<button id="QuartInOut">Quart In Out</button>
|
|
<br />
|
|
<button id="QuintIn">Quint In</button>
|
|
<button id="QuintOut">Quint Out</button>
|
|
<button id="QuintInOut">Quint In Out</button>
|
|
<br />
|
|
<button id="Linear">Linear</button>
|
|
</div>
|
|
<div style="position: absolute; left: 150px; margin: 10px;">
|
|
<button id="ExpoIn">Expo In</button>
|
|
<button id="ExpoOut">Expo Out</button>
|
|
<button id="ExpoInOut">Expo In Out</button>
|
|
<br />
|
|
<button id="CircIn">Circ In</button>
|
|
<button id="CircOut">Circ Out</button>
|
|
<button id="CircInOut">Circ In Out</button>
|
|
<br />
|
|
<button id="BackIn">Back In</button>
|
|
<button id="BackOut">Back Out</button>
|
|
<button id="BackInOut">Back In Out</button>
|
|
<br />
|
|
<button id="ElasticIn">Elastic In</button>
|
|
<button id="ElasticOut">Elastic Out</button>
|
|
<button id="ElasticInOut">Elastic In Out</button>
|
|
<br />
|
|
<button id="BounceIn">Bounce In</button>
|
|
<button id="BounceOut">Bounce Out</button>
|
|
<button id="BounceInOut">Bounce In Out</button>
|
|
</div>
|
|
</body>
|
|
</html>
|