FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
WebWorldWind/examples/MultiWindow.html at develop · NASAWorldWind/WebWorldWind · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NASAWorldWind
/
WebWorldWind
Public
Notifications
You must be signed in to change notification settings
Fork
427
Star
997
Code
Issues
247
Pull requests
24
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Security and quality
Insights
Expand file tree
Breadcrumbs
WebWorldWind
/
examples
/
MultiWindow.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (27 loc) · 1.2 KB
Breadcrumbs
WebWorldWind
/
examples
/
MultiWindow.html
Copy path
File metadata and controls
27 lines (27 loc) · 1.2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html
>
<
html
>
<
head
lang
="
en
"
>
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
<
meta
charset
="
utf-8
"
>
<
title
>
WorldWind Multi-window Example
</
title
>
<
script
data-main
="
MultiWindow
"
src
="
https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.min.js
"
>
</
script
>
</
head
>
<
body
>
<
div
id
="
page
"
>
<
div
id
="
div1
"
style
="
position:absolute; top:20px; left:20px;
"
>
<
canvas
id
="
canvasOne
"
width
="
300
"
height
="
300
"
style
="
border: 10px solid mediumblue; background-color: black;
"
>
Your browser does not support HTML5 Canvas.
</
canvas
>
</
div
>
<
div
id
="
div2
"
style
="
position:absolute; top:20px; left:350px;
"
>
<
canvas
id
="
canvasTwo
"
width
="
300
"
height
="
300
"
style
="
border: 10px solid #ff0000; background-color: black;
"
>
</
canvas
>
</
div
>
<
div
id
="
div3
"
style
="
position:absolute; top:20px; left:680px;
"
>
<
canvas
id
="
canvasThree
"
width
="
300
"
height
="
300
"
style
="
border: 10px solid #00ff00; background-color: black;
"
>
</
canvas
>
</
div
>
</
div
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL