-
Notifications
You must be signed in to change notification settings - Fork 6
/
benjamin.html
140 lines (129 loc) · 3.76 KB
/
benjamin.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Benjamin</title>
<style>
body {
background-color: #ffcc00; /* Jaune vif pour l'arrière-plan */
font-family: "Comic Sans MS", cursive, sans-serif; /* Style de police guignol */
text-align: center;
color: #333;
margin: 0;
padding: 0;
}
h2 {
color: #ff6600; /* Couleur vive pour le nom */
font-size: 3em;
text-shadow: 2px 2px 5px #000;
}
h3 {
color: #0066ff; /* Couleur vive pour le sous-titre */
font-size: 2em;
}
ul {
list-style-type: none;
padding: 0;
font-size: 1.5em;
}
ul li {
margin: 10px 0;
color: #9900cc;
text-shadow: 1px 1px 3px #000;
}
/* Effets spectaculaires pour le lien "snap" */
a {
color: #fff;
background-color: #ff0055; /* Couleur vive pour le bouton */
padding: 15px 30px;
text-decoration: none;
font-size: 1.5em;
font-weight: bold;
border-radius: 20px;
box-shadow: 0 0 20px #ff0055, 0 0 40px #ff0055, 0 0 60px #ff0055,
0 0 80px #ff0055;
position: relative;
transition: all 0.5s ease;
overflow: hidden;
animation: shake 0.5s infinite alternate; /* Lien qui secoue de manière dynamique */
}
/* Animation de secousse pour attirer l'attention */
@keyframes shake {
0% {
transform: rotate(2deg);
}
100% {
transform: rotate(-2deg);
}
}
/* Effet lumineux et explosion au survol */
a:hover {
color: #ffcc00;
background-color: #000;
box-shadow: 0 0 100px #ffcc00, 0 0 200px #ffcc00, 0 0 300px #ffcc00;
transform: scale(1.3) rotate(10deg);
animation: explode 1s ease-out;
}
/* Animation d'explosion lumineuse */
@keyframes explode {
0% {
box-shadow: 0 0 20px #ff0055, 0 0 40px #ff0055, 0 0 60px #ff0055,
0 0 80px #ff0055;
transform: scale(1) rotate(0deg);
}
50% {
box-shadow: 0 0 100px #ffcc00, 0 0 200px #ffcc00, 0 0 300px #ffcc00;
transform: scale(1.5) rotate(10deg);
}
100% {
box-shadow: 0 0 100px #ffcc00, 0 0 200px #ffcc00, 0 0 300px #ffcc00;
transform: scale(1.3) rotate(10deg);
}
}
/* Effet de traînée de particules */
a::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 150%;
height: 150%;
background: radial-gradient(
circle,
rgba(255, 255, 255, 0.3),
rgba(255, 204, 0, 0)
);
border-radius: 50%;
transform: translate(-50%, -50%) scale(0);
opacity: 0;
transition: transform 0.5s ease, opacity 0.5s ease;
}
a:hover::before {
transform: translate(-50%, -50%) scale(1.5);
opacity: 1;
}
img {
border: 5px solid #000;
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
border-radius: 50%;
max-width: 300px; /* Limitation de la taille de l'image */
margin-bottom: 20px;
}
</style>
</head>
<body>
<img src="photo_ben.jpg" alt="ben" width="100%" />
<a href="https://www.snapchat.com/fr-FR">snap</a>
<h2>Benjamin Dombry</h2>
<h3>info</h3>
<ul>
<li>19 ans</li>
<li>4 chiffres sur le compte</li>
<li>pas de taff pas d'alternance</li>
<li>Tombe petit à petit dans betclic (+23€ de benef)</li>
<li>Mystérieux</li>
</ul>
<a href="index.html">retour</a>
</body>
</html>