-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathplots.html
More file actions
31 lines (29 loc) · 1.13 KB
/
Copy pathplots.html
File metadata and controls
31 lines (29 loc) · 1.13 KB
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
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive plots</title>
<style>
iframe {
width: 100%; /* Make iframe take full width */
height: 1000px; /* Adjust height as needed */
border: 2px solid #838583; /* Add a border */
border-radius: 8px; /* Add rounded corners */
margin-bottom: 20px; /* Space between frames */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for better visuals */
}
</style>
</head>
<body>
<h1>Interactive plots</h1>
<!-- Add each file as an iframe -->
<iframe src="figures/Short/Timeseries.html"></iframe>
<iframe src="figures/Medium_pre1986/Timeseries.html"></iframe>
<iframe src="figures/Medium_post1986/Timeseries.html"></iframe>
<iframe src="figures/Long/Timeseries_RCP45.html"></iframe>
<iframe src="figures/Long/Timeseries_RCP85.html"></iframe>
<iframe src="figures/Short/QQPlot.html"></iframe>
<iframe src="figures/Medium_post1986/QQPlot.html"></iframe>
</body>
</html>