Pure CSS Only Snackbar

Developer
Size
1,973 Kb
Views
50,600

How do I make an pure css only snackbar?

Using only CSS get a snackbar that slides up and in, and click to dismiss.. What is a pure css only snackbar? How do you make a pure css only snackbar? This script and codes were developed by Tom on 19 November 2022, Saturday.

Pure CSS Only Snackbar Previews

Pure CSS Only Snackbar - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Pure CSS Only Snackbar</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="snack-wrap"> <input type="checkbox" class="snackclose animated" id="close"/><label class="snacklable animated" for="close"></label> <div class="snackbar animated"> <p><strong>Notice:</strong> This is a pure CSS snackbar. Click to dismiss.</p> </div>
</div>
<p>CSS Only Snackbar, uses checkbox:checked to change animation, with covering lable to set checked.</p>
</body>
</html>

Pure CSS Only Snackbar - Script Codes CSS Codes

.snack-wrap { display:block; position:fixed; bottom:0px; left:10px; padding:0px;
}
.snackbar { display:block; background:#222; border:#f2f2f2; padding:10px 40px 10px 20px; color:#fff; font-family:Arial; position:relative; left:0px; bottom:-70px; transition: bottom 0.5s ease-in-out; z-index:9;
}
.snackclose, label { bottom:-70px; position:absolute; border:0;
}
.snackclose { display:none; z-index:10;
}
label { z-index:11; display:block; width:100%; height:100%; color:rgba(255,255,255,0.8); cursor:pointer;
}
.animated { animation-name: snackbar-show; animation-duration: 5s; animation-direction: forwards; animation-timing-function: ease-in-out; animation-delay:1s; animation-fill-mode: forwards;
}
.snackclose:checked~.snackbar, .snackclose:checked, .snackclose:checked+label { animation-name: snackbar-hide; animation-delay:0s;
}
@keyframes snackbar-show { 0%{ bottom:-70px; } 90%, 95% {bottom:15px; } 92.5%, 100% {bottom:10px; }
}
@keyframes snackbar-hide { 0%, 7.5% {bottom:10px; } 5%,10% {bottom:15px; } 100% {bottom:-70px; }
}
Pure CSS Only Snackbar - Script Codes
Pure CSS Only Snackbar - Script Codes
Home Page Home
Developer Tom
Username TomJ1588
Uploaded November 19, 2022
Rating 3
Size 1,973 Kb
Views 50,600
Do you need developer help for Pure CSS Only Snackbar?

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!

Tom (TomJ1588) 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!