forked from vitmalina/w2ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup2.html
28 lines (27 loc) · 1.05 KB
/
popup2.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
<div id="id1" style="width: 400px; height: 300px; overflow: auto">
<div rel="title">
Popup #1
</div>
<div rel="body">
<div style="padding: 20px; color: green; font-size: 24px;">
This if first popup, it should not be.
</div>
</div>
<div rel="buttons">
<button class="w2ui-btn" onclick="w2popup.close()">Close</button>
</div>
</div>
<div id="id2" style="width: 600px; height: 300px; overflow: auto">
<div rel="title">
Popup #2
</div>
<div rel="body">
<div style="padding: 20px; color: green; font-size: 14px;">
Some other popup text. Some other popup text. Some other popup text. Some other popup text. Some other popup text.
Some other popup text. Some other popup text. Some other popup text. Some other popup text. Some other popup text.
</div>
</div>
<div rel="buttons">
<button class="w2ui-btn" onclick="w2popup.load({ url: 'popup.html', transition: 'slide-right', showMax: true })">Switch to Popup 1</button>
</div>
</div>