-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathvideo.html
79 lines (68 loc) · 2.5 KB
/
video.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head>
<script src="../../src/idiomorph.js"></script>
<script src="../lib/morphdom.js"></script>
<style>
div, button {
margin:16px;
}
</style>
</head>
<body>
<div id="idiomorph">
<div>
<h3>Above...</h3>
</div>
<div>
<iframe id="video" width="422" height="240" src="https://www.youtube.com/embed/dQw4w9WgXcQ"
title="Rick Astley - Never Gonna Give You Up (Official Music Video)" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
<button onclick="Idiomorph.morph(document.getElementById('idiomorph'), document.getElementById('idiomorph-after').content.cloneNode(true).firstElementChild)">
Idiomorph
</button>
<template id="idiomorph-after">
<div>
<div>
<iframe id="video" width="422" height="240" src="https://www.youtube.com/embed/dQw4w9WgXcQ"
title="Rick Astley - Never Gonna Give You Up (Official Music Video)" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div>
<h3>Below...</h3>
</div>
</div>
</template>
<hr/>
<div id="morphdom">
<div>
<h3>Above...</h3>
</div>
<div>
<iframe id="video2" width="422" height="240" src="https://www.youtube.com/embed/dQw4w9WgXcQ"
title="Rick Astley - Never Gonna Give You Up (Official Music Video)" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
<button onclick="morphdom(document.getElementById('morphdom'), document.getElementById('morphdom-after').content.cloneNode(true).firstElementChild, {})">
Morphdom
</button>
<template id="morphdom-after">
<div>
<div>
<iframe id="video2" width="422" height="240" src="https://www.youtube.com/embed/dQw4w9WgXcQ"
title="Rick Astley - Never Gonna Give You Up (Official Music Video)" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div>
<h3>Below...</h3>
</div>
</div>
</template>
</body>
</html>