Test-tube

Developer
Size
2,718 Kb
Views
74,888

How do I make an test-tube?

What is a test-tube? How do you make a test-tube? This script and codes were developed by Adem Ilter on 11 June 2022, Saturday.

Test-tube Previews

Test-tube - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>test-tube</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ body { background-color: #eee;
}
.lab { position: relative; margin: 40px auto 0; width: 42px; height: 100px;
}
.lab img { position: absolute; bottom: 0; left: 0; z-index: 1;
}
.lab i { z-index: 2; position: absolute; height: 8px; width: 8px; border-radius: 16px; opacity: 0; animation: bubble1 linear 3s infinite;
}
.lab i:nth-child(1) { animation-name: bubble1;
}
.lab i:nth-child(2) { animation-delay: .7s; animation-name: bubble2;
}
.lab i:nth-child(3) { animation-delay: 1.5s; animation-name: bubble1;
}
.lab i:nth-child(4) { animation-delay: 2.3s; animation-name: bubble2;
}
@keyframes bubble1{ 0%{bottom:1px; left:21px; transform:scale(.1); opacity:1; background:#fff;} 10%{bottom:5px; left:17px; transform:scale(.2); opacity:1; background:#fff; } 20%{bottom:10px; left:21px; transform:scale(.2); opacity:1; background:#fff;} 30%{bottom:15px; left:15px; transform:scale(.3);opacity:1; background:#fff;} 40%{bottom:19px; left:21px; transform:scale(.4); opacity:1; background:#fff; } 49%{bottom:19px; left:17px; transform:scale(.4); opacity:1; background:#fff; } 50%{bottom:19px; left:17px; transform:scale(.5); opacity:1; background:#ff8ab8; } 60%{bottom:55px; left:21x; transform:scale(.6); } 70%{bottom:60px; left:16px; transform:scale(.7); } 80%{bottom:65px; left:21px; transform:scale(.8);} 90%{bottom:70px; left:17px; transform:scale(1); } 99%{bottom:73px; left:21px; transform:scale(1); opacity:.5;} 100%{bottom:73px; left:21px; transform:scale(5); opacity:0; background:#ff8ab8;}
}
@keyframes bubble2{ 0%{bottom:1px; left:13px; transform:scale(.1); opacity:1; background:#fff;} 10%{bottom:5px; left:18px; transform:scale(.2); opacity:1; background:#fff; } 20%{bottom:10px; left:13px; transform:scale(.2); opacity:1; background:#fff;} 30%{bottom:15px; left:18px; transform:scale(.3);opacity:1; background:#fff;} 40%{bottom:19px; left:13px; transform:scale(.4); opacity:1; background:#fff; } 49%{bottom:19px; left:18px; transform:scale(.4); opacity:1; background:#fff;} 50%{bottom:19px; left:18px; transform:scale(.5); opacity:1; background:#61d3ff;} 60%{bottom:55px; left:13px; transform:scale(.6); } 70%{bottom:60px; left:18px; transform:scale(.7); } 80%{bottom:65px; left:13px; transform:scale(.8);} 90%{bottom:70px; left:18px; transform:scale(1); } 99%{bottom:73px; left:13px; transform:scale(1); opacity:.5; } 100%{bottom:73px; left:13px; transform:scale(5); opacity:0; background:#61d3ff;}
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class="lab"> <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3561/lab.png" alt="lab bottle"/> <i></i> <i></i> <i></i> <i></i>
</div> <script src="js/index.js"></script>
</body>
</html>

Test-tube - Script Codes CSS Codes

body { background-color: #eee;
}
.lab { position: relative; margin: 40px auto 0; width: 42px; height: 100px;
}
.lab img { position: absolute; bottom: 0; left: 0; z-index: 1;
}
.lab i { z-index: 2; position: absolute; height: 8px; width: 8px; border-radius: 16px; opacity: 0; animation: bubble1 linear 3s infinite;
}
.lab i:nth-child(1) { animation-name: bubble1;
}
.lab i:nth-child(2) { animation-delay: .7s; animation-name: bubble2;
}
.lab i:nth-child(3) { animation-delay: 1.5s; animation-name: bubble1;
}
.lab i:nth-child(4) { animation-delay: 2.3s; animation-name: bubble2;
}
@keyframes bubble1{ 0%{bottom:1px; left:21px; transform:scale(.1); opacity:1; background:#fff;} 10%{bottom:5px; left:17px; transform:scale(.2); opacity:1; background:#fff; } 20%{bottom:10px; left:21px; transform:scale(.2); opacity:1; background:#fff;} 30%{bottom:15px; left:15px; transform:scale(.3);opacity:1; background:#fff;} 40%{bottom:19px; left:21px; transform:scale(.4); opacity:1; background:#fff; } 49%{bottom:19px; left:17px; transform:scale(.4); opacity:1; background:#fff; } 50%{bottom:19px; left:17px; transform:scale(.5); opacity:1; background:#ff8ab8; } 60%{bottom:55px; left:21x; transform:scale(.6); } 70%{bottom:60px; left:16px; transform:scale(.7); } 80%{bottom:65px; left:21px; transform:scale(.8);} 90%{bottom:70px; left:17px; transform:scale(1); } 99%{bottom:73px; left:21px; transform:scale(1); opacity:.5;} 100%{bottom:73px; left:21px; transform:scale(5); opacity:0; background:#ff8ab8;}
}
@keyframes bubble2{ 0%{bottom:1px; left:13px; transform:scale(.1); opacity:1; background:#fff;} 10%{bottom:5px; left:18px; transform:scale(.2); opacity:1; background:#fff; } 20%{bottom:10px; left:13px; transform:scale(.2); opacity:1; background:#fff;} 30%{bottom:15px; left:18px; transform:scale(.3);opacity:1; background:#fff;} 40%{bottom:19px; left:13px; transform:scale(.4); opacity:1; background:#fff; } 49%{bottom:19px; left:18px; transform:scale(.4); opacity:1; background:#fff;} 50%{bottom:19px; left:18px; transform:scale(.5); opacity:1; background:#61d3ff;} 60%{bottom:55px; left:13px; transform:scale(.6); } 70%{bottom:60px; left:18px; transform:scale(.7); } 80%{bottom:65px; left:13px; transform:scale(.8);} 90%{bottom:70px; left:18px; transform:scale(1); } 99%{bottom:73px; left:13px; transform:scale(1); opacity:.5; } 100%{bottom:73px; left:13px; transform:scale(5); opacity:0; background:#61d3ff;}
}

Test-tube - Script Codes JS Codes

// @ademilter
// for ademilter.com/lab
Test-tube - Script Codes
Test-tube - Script Codes
Home Page Home
Developer Adem Ilter
Username ademilter
Uploaded June 11, 2022
Rating 4
Size 2,718 Kb
Views 74,888
Do you need developer help for Test-tube?

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!

Adem Ilter (ademilter) Script Codes
Create amazing blog posts 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!