-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 884 Bytes
/
index.html
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
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>RxJS Demo</title>
<style>
.line {
float: left;
width: 30%;
}
</style>
</head>
<body>
<h1>RxJS Demo</h1>
<input type="text" id="input1" />
<input type="text" id="input2" />
<p>Combined value: <span></span></p>
<button>Click to start</button>
<button id="one">Click to start MergeMap</button>
<button id="two">Click to start SwitchMap</button>
<button id="three">Click to start ConcatMap</button>
<button id="getDataButton">Get Data</button>
<br />
<div>
<div id="line-one" class="line">Line 1</div>
<div id="line-two" class="line">Line 2</div>
<div id="line-three" class="line">Line 3</div>
</div>
</body>
</html>