28 lines
488 B
HTML
28 lines
488 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>hello_tutorial</title>
|
|
<style>
|
|
button {
|
|
position: relative;
|
|
z-index: 5;
|
|
top: -300px;
|
|
left: 350px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
var listener = document.getElementById('listener');
|
|
listener.addEventListener('message', handleMessage, true);
|
|
</script>
|
|
<embed
|
|
id="hello_tutorial"
|
|
width="800"
|
|
height="600"
|
|
type="application/x-hello" />
|
|
<br/>
|
|
<button>Кнопка поверх OpenGL</button>
|
|
</body>
|
|
</html>
|