Flower Spinner

Developer
Size
2,584 Kb
Views
8,096

How do I make an flower spinner?

What is a flower spinner? How do you make a flower spinner? This script and codes were developed by Joe Harry on 25 October 2022, Tuesday.

Flower Spinner Previews

Flower Spinner - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Flower Spinner</title> <link rel="stylesheet" href="css/style.css">
</head>
<body>	<div class="container">	<svg version="1.1" x="0px" y="0px" viewBox="0 0 256 256" >	<path id="one" class="b" d="M252,128c0,9.1-10.4,16.9-12.4,25.5c-2,8.8,4,20.4,0.1,28.3c-3.9,8.1-16.7,10.6-22.2,17.5	c-5.6,7-5.2,20-12.2,25.6c-6.9,5.5-19.6,2.3-27.6,6.2c-8,3.8-13.3,15.8-22.1,17.8c-8.5,1.9-18.5-6.5-27.6-6.5s-19.1,8.4-27.6,6.5	c-8.8-2-14.1-13.9-22.1-17.8c-8.1-3.9-20.7-0.7-27.6-6.2c-7-5.6-6.6-18.6-12.2-25.6c-5.5-6.9-18.3-9.5-22.2-17.5	c-3.8-8,2.1-19.5,0.1-28.3C14.4,144.9,4,137.1,4,128s10.4-16.9,12.4-25.5c2-8.8-4-20.4-0.1-28.3c3.9-8.1,16.7-10.6,22.2-17.5	c5.6-7,5.2-20,12.2-25.6c6.9-5.5,19.6-2.3,27.6-6.2c8-3.8,13.3-15.8,22.1-17.8c8.5-1.9,18.5,6.5,27.6,6.5s19.1-8.4,27.6-6.5	c8.8,2,14.1,13.9,22.1,17.8c8.1,3.9,20.7,0.7,27.6,6.2c7,5.6,6.6,18.6,12.2,25.6c5.5,6.9,18.3,9.5,22.2,17.5	c3.8,8-2.1,19.5-0.1,28.3C241.6,111.1,252,118.9,252,128z"/>	<path id="two" class="b" d="M246.3,128c0,20-21.4,34.4-30.7,50.6c-9.6,16.6-11.8,42.3-28.4,51.9c-16.1,9.3-39.2-1.3-59.2-1.3	s-43,10.7-59.2,1.3c-16.6-9.6-18.8-35.2-28.4-51.9C31.1,162.4,9.7,148,9.7,128s21.4-34.4,30.7-50.6C50,60.8,52.2,35.2,68.8,25.6	C85,16.2,108,26.9,128,26.9c20,0,43-10.7,59.2-1.3c16.6,9.6,18.8,35.2,28.4,51.9C224.9,93.6,246.3,108,246.3,128z"/>	<path id="three" class="b" d="M225.3,128c0,9.8-14.6,17.1-17.4,25.9c-3,9.1,4.4,23.6-1.1,31.2c-5.6,7.7-21.7,5.1-29.4,10.7	c-7.6,5.5-10.1,21.7-19.3,24.6c-8.8,2.9-20.3-8.6-30.1-8.6c-9.8,0-21.3,11.5-30.1,8.6c-9.1-3-11.7-19.1-19.3-24.6	c-7.7-5.6-23.8-3-29.4-10.7c-5.5-7.6,1.8-22.1-1.1-31.2c-2.9-8.8-17.4-16.2-17.4-25.9c0-9.8,14.6-17.1,17.4-25.9	c3-9.1-4.4-23.6,1.1-31.2c5.6-7.7,21.7-5.1,29.4-10.7c7.6-5.5,10.1-21.7,19.3-24.6c8.8-2.9,20.3,8.6,30.1,8.6	c9.8,0,21.3-11.5,30.1-8.6c9.1,3,11.7,19.1,19.3,24.6c7.7,5.6,23.8,3,29.4,10.7c5.5,7.6-1.8,22.1,1.1,31.2	C210.7,110.9,225.3,118.2,225.3,128z"/>	<circle id="four" class="b" cx="128" cy="128" r="52.5"/>	</svg>	</div>
</body>
</html>

Flower Spinner - Script Codes CSS Codes

html, body { height: 100%; margin: 0; padding: 0; background-color: #B3E5FC;
}
.container {	position: absolute;	left:50%;	top: 50%;	margin-top: -50px;	margin-left: -50px;	width: 100px;	height: 100px;	layout: table;
}
#one {	animation: spin 2s alternate cubic-bezier(0,.81,1,.25) infinite;	fill:#0277BD;	transform-origin: 128px 128px;
}
#two{	fill:#03A9F4;	animation: spin 2s alternate cubic-bezier(.48,.1,.9,.43) infinite;	transform-origin: 128px 128px;	animation-delay:0.3s;
}
#three{	fill:#4FC3F7;	animation: spin 2s alternate cubic-bezier(.48,.1,.9,.43) infinite;	transform-origin: 128px 128px;	animation-delay:0.6s;
}
#four{	fill:#0277BD;	transform-origin: 128px 128px;	animation: bounce 1s alternate cubic-bezier(.03,.65,.26,.96) infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); }
}
@keyframes bounce { 0% {transform: scale(0);} 100% {transform: scale(1);}
}
Flower Spinner - Script Codes
Flower Spinner - Script Codes
Home Page Home
Developer Joe Harry
Username woodwork
Uploaded October 25, 2022
Rating 3
Size 2,584 Kb
Views 8,096
Do you need developer help for Flower Spinner?

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!

Joe Harry (woodwork) Script Codes
Create amazing sales emails 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!