-
Notifications
You must be signed in to change notification settings - Fork 0
/
click.php
96 lines (83 loc) · 3.06 KB
/
click.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
h3 {
color: black; /* Черный цвет текста для элементов h3 */
margin: 0; /* Убираем внешние отступы у h3 */
}
#contextMenu {
display: none;
position: absolute;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
z-index: 1000;
border-radius: 8px; /* Скругленные углы */
}
.menuItem {
padding: 8px 12px;
cursor: pointer;
display: flex;
align-items: center;
}
.menuItem:hover {
background-color: #f2f2f2;
}
.icon {
margin-right: 8px;
}
</style>
<title>Контекстное меню</title>
</head>
<body>
<!-- Ваш контент здесь -->
<div id="contextMenu">
<div class="menuItem" onclick="reloadPage()">
<h3><i class="fas fa-sync-alt icon"></i> Перезагрузить</h3>
</div>
<div class="menuItem" onclick="goBack()">
<h3><i class="fas fa-arrow-left icon"></i> Назад</h3>
</div>
<div class="menuItem" onclick="goForward()">
<h3><i class="fas fa-arrow-right icon"></i> Вперёд</h3>
</div>
<div class="menuItem" onclick="logout()">
<h3><i class="fas fa-sign-out-alt icon"></i> Выход из аккаунта</h3>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script>
document.addEventListener("contextmenu", function (event) {
event.preventDefault();
const contextMenu = document.getElementById("contextMenu");
contextMenu.style.display = "block";
contextMenu.style.left = event.pageX + "px";
contextMenu.style.top = event.pageY + "px";
});
document.addEventListener("click", function () {
const contextMenu = document.getElementById("contextMenu");
contextMenu.style.display = "none";
});
function reloadPage() {
// Перезагрузка страницы
location.reload();
}
function goBack() {
// Переход на предыдущую страницу
history.back();
}
function goForward() {
// Переход на следующую страницу
history.forward();
}
function logout() {
// Переход на страницу exit.php
window.location.href = "exit.php";
}
</script>
</body>
</html>