Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions Pulse Effect Button (Hover)/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pulse Effect Button (Hover)</title>
<style>
body {
background: linear-gradient(135deg, #141E30, #243B55);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

.pulse-btn {
background-color: #00bcd4;
color: white;
border: none;
border-radius: 50px;
padding: 15px 40px;
font-size: 18px;
cursor: pointer;
position: relative;
outline: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: background 0.3s ease;
}

.pulse-btn:hover {
background-color: #0199a9;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
}
70% {
box-shadow: 0 0 0 20px rgba(0, 188, 212, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
}
}
</style>
</head>
<body>

<button class="pulse-btn">Hover Me</button>

</body>
</html>
53 changes: 53 additions & 0 deletions Text Reflection/Reflection.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reflection Text Effect (Multi-Word)</title>
<style>
body {
background: #000;
color: #fff;
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}

.reflect-text {
font-size: 60px;
font-weight: bold;
text-transform: uppercase;
position: relative;
color: #00ffff;
display: inline-block;
}

.reflect-text::after {
content: attr(data-text);
position: absolute;
top: 100%;
left: 0;
width: 100%;
color: #00ffff;
transform: scaleY(-1);
opacity: 0.4;
filter: blur(1px);
background: linear-gradient(to bottom, rgba(246, 250, 250, 0.7), transparent);
background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
white-space: nowrap;
}
</style>
</head>
<body>

<div class="reflect-text" data-text="Reflection Text Effect Example">
Reflection Text Effect
</div>

</body>
</html>