forked from SSShooter/MyDiary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpop-up.html
More file actions
45 lines (45 loc) · 1.36 KB
/
Copy pathpop-up.html
File metadata and controls
45 lines (45 loc) · 1.36 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>pop-up test</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="bootstrap/bootstrap.min.css">
<style>
</style>
</head>
<body>
<button id="suibian" data-poptarget="firstpop">suibiann</button>
<button id="suibian2" data-poptarget="secpop">suibiann22222</button>
<div class="pop-up" id="firstpop">
<div class="pop-up-box">
<div class="content">
<p class="name">miyamizu mitsuha</p>
<p class="number" href="tel:139xxxxxxxx">12304567</p>
</div>
<div class="footer">
<button class="btn btn-default" onclick="location.href = 'tel:15626217777';">call</button>
<button class="btn btn-default">delete</button>
</div>
</div>
</div>
<div class="pop-up" id="secpop">
<div class="pop-up-box">
<div class="content">
<p class="name">tachibana taki</p>
<p class="number" href="tel:139xxxxxxxx">12304567</p>
</div>
<div class="footer">
<button class="btn btn-default" onclick="location.href = 'tel:15626217777';">call</button>
<button class="btn btn-default">delete</button>
</div>
</div>
</div>
<script src="lib/jquery.min.js"></script>
<script src="lib/velocity.min.js"></script>
<script>
$('#suibian').popUpPop();
$('#suibian2').popUpPop();
</script>
</body>
</html>