Snippet 5 : Hover Effect Button – 5

Efek yang akan ditampilkan adalah efek glowing saat hover diatas button.

body {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #222;
}

a {
	text-decoration: none;
	color: white;
	font-family: sans-serif;
	font-size: 40px;
	border: 3px solid white;
	padding: 40px 80px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

a:hover {
	background-color: #F44336;
}

a:before {
	content: '';
	background-color:  rgba(255, 255, 255, 0.4);
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	position: absolute;
	transform: translateX(-100%) rotate(45deg);
	transition: all 0.3s;
}

a:hover:before {
 	transform: translateX(100%) rotate(45deg);
}
Sharing is caring:

Leave a Comment