SVG line hover

Developer
Size
1,648 Kb
Views
42,504

How do I make an svg line hover?

What is a svg line hover? How do you make a svg line hover? This script and codes were developed by John Heiner on 14 November 2022, Monday.

SVG line hover Previews

SVG line hover - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>SVG line hover</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div> <svg width="200" height="200"> <line class="top" x1="0" y1="0" x2="600" y2="0"/> <line class="left" x1="0" y1="200" x2="0" y2="-400"/> <line class="bottom" x1="200" y1="200" x2="-400" y2="200"/> <line class="right" x1="200" y1="0" x2="200" y2="600"/> </svg>
</div>
</body>
</html>

SVG line hover - Script Codes CSS Codes

div {	width: 200px;	height: 200px;	position: relative;	background: #fff;
}
svg {	position: absolute;	top: 0;	left: 0;
}
svg line {	stroke-width: 10;	stroke: #2b7297;	fill: none;	stroke-dasharray: 200;	-webkit-transition: all 1s;	transition: transform 1s;
}
div:hover svg line.top { -webkit-transform: translateX(-400px); transform: translateX(-400px);
}
div:hover svg line.bottom { -webkit-transform: translateX(400px); transform: translateX(400px);
}
div:hover svg line.left { -webkit-transform: translateY(400px); transform: translateY(400px);
}
div:hover svg line.right { -webkit-transform: translateY(-400px); transform: translateY(-400px);
}
SVG line hover - Script Codes
SVG line hover - Script Codes
Home Page Home
Developer John Heiner
Username johnheiner
Uploaded November 14, 2022
Rating 3
Size 1,648 Kb
Views 42,504
Do you need developer help for SVG line hover?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

John Heiner (johnheiner) Script Codes
Create amazing art & images with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!