-
Notifications
You must be signed in to change notification settings - Fork 3
/
Nani_Phone.html
113 lines (103 loc) · 3.62 KB
/
Nani_Phone.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phone Tricks</title>
<style>
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root, body{
width: 100%;
height: 100%;
background: #333;
color: #DDD;
font-size: 5vw;
text-align: center;
}
ul {
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
}
li {
margin: 15px;
font-size: 21px;
text-decoration: underline;
font-weight: bold;
color: #0D9;
}
span {
letter-spacing: 1.2px;
margin: 5px auto;
text-align: center;
display: inline-block;
}
hr {
margin-top: 4px;
}
summary {
list-style: none;
}
summary::-webkit-details-marker {
display: none;
}
summary {
padding: 0.4rem 0.8rem;
background: #09D;
width: max-content;
margin: auto;
border-radius: 999px;
}
div[class] {
margin: 20px auto;
}
</style>
<script src="https://cdn.jsdelivr.net/gh/mkpro118/MKQuery/MKQuery.js"></script>
</head>
<body>
<div class="live-location">
<details>
<summary id="first" translate="yes">Live Location</summary>
<ul style="list-style: none;">
<li><span>Step 1</span> <br> <img loading="lazy" src="https://i.imgur.com/xxwX48N.jpg" alt="P1" width="360"><hr></li>
<li><span>Step 2</span> <br> <img loading="lazy" src="https://i.imgur.com/RnO67Zj.jpg" alt="P2" width="360"><hr></li>
<li><span>Step 3</span> <br> <img loading="lazy" src="https://i.imgur.com/UHrCbZt.jpg" alt="P3" width="360"></li>
</ul>
</details>
</div>
<div class="contact">
<details>
<summary id="second" translate="yes">Add New Whatsapp Contact</summary>
<ul style="list-style: none;">
<li><span>Step 1</span> <br> <img loading="lazy" src="https://i.imgur.com/y7mkSRp.jpg" alt="P1" width="360"><hr></li>
<li><span>Step 2</span> <br> <img loading="lazy" src="https://i.imgur.com/WKolcDH.jpg" alt="P2" width="360"></li>
</ul>
</details>
</div>
<div class="call">
<details>
<summary id="third" translate="yes">Send A Contact While On A Phone Call</summary>
<ul style="list-style: none;">
<li><span>Step 1</span> <br> <img loading="lazy" src="https://i.imgur.com/FFqGX71.jpg" alt="P1" width="360"><hr></li>
<li><span>Step 2</span> <br> <img loading="lazy" src="https://i.imgur.com/8pwYT4J.jpg" alt="P2" width="360"><hr></li>
<li><span>Step 3</span> <br> <img loading="lazy" src="https://i.imgur.com/vJhvXo7.jpg" alt="P3" width="360"><hr></li>
<li><span>Step 4</span> <br> <img loading="lazy" src="https://i.imgur.com/YOTApwA.jpg" alt="P4" width="360"></li>
</ul>
</details>
</div>
<script>
$('details > summary').on('click', event => {
event.stopPropagation()
const id = event.target.id
$(`details[open] > summary:not(#${id})`).each(_ => _.parentNode.removeAttribute('open'))
})
</script>
</body>
</html>