Skip to content
Youths Forum Youths Forum Youths Forum

Tech Blogs & Programming Tutorials

Youths Forum Youths Forum Youths Forum

Tech Blogs & Programming Tutorials

  • Blog
  • News
  • Programming
    • PHP
    • JavaScript
    • JQuery
    • CSS
    • HTML
    • API
  • Stock Market Live
  • Automobiles
    • Cars
  • Gadgets
    • Phones
    • Android Phones

Categories

  • Artificial Intelligence (1)
  • Automobiles (12)
    • Cars (7)
  • Blog (104)
    • Poems (2)
    • Space (2)
  • Command (2)
  • Education (2)
  • Entertainment (4)
  • Gadgets (9)
    • Phones (8)
      • Android Phones (4)
  • HTML Templates (11)
  • IT Training Institutes (1)
  • Lifestyle (4)
  • News (194)
  • Others (23)
  • Programming (296)
    • API (16)
    • CSS (83)
    • Database (4)
    • Hosting (1)
    • HTML (37)
    • JavaScript (117)
      • JQuery (27)
      • ReactJS (7)
    • PHP (116)
  • Python (3)
  • recipes (1)
  • SEE Result (1)
  • Server (3)
  • Blog
  • News
  • Programming
    • PHP
    • JavaScript
    • JQuery
    • CSS
    • HTML
    • API
  • Stock Market Live
  • Automobiles
    • Cars
  • Gadgets
    • Phones
    • Android Phones
Close

Search

CSSJavaScript

Show toast/snackbar in a webpage using CSS and JavaScript

By Admin
May 24, 2019 1 Min Read
0

In this post, we will be learning to display a simple toast message or snackbar in a webpage using CSS, HTML and JavaScript.

Full Source Code :

 

<style>
  #snakbar{
    visibility:hidden;
    min-width:250px;
    margin-left:-125px;
    background-color:#333;
    color:#fff;
    text-align:center;
    border-radius:2px;
    padding:10px;
    position:fixed;
    z-index:1;
    left:50%;
    bottom:30px;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;	
  }
  #snackbar .show{
    visibility:visible;
  }

  @-webkit-animation-keyframes fadein{
    from{bottom:0;opacity:0}
    to{bottom:30px;opacity:1}
  }

  @keyframes fadein{
    from{bottom:0;opacity:0}
    to{bottom:30px;opacity:1}
  }

  @-webkit-animation-keyframes fadeout{
    from{bottom:30;opacity:1}
    to{bottom:0;opacity:0}
  }
  @keyframes fadeout{
    from{bottom:30;opacity:1}
    to{bottom:0;opacity:0}
  }
</style>


<button onclick="showToast();">Show Toast</button>
<div id="snackbar">Here goes the toast message</div>




<script>
function showToast(){
  var x = document.getElementById('snackbar');
  x.className = "show";

  setTimeout(function(){
    x.className = x.className.replace('show','');
  },3000);
}
</script>

 

Refer this video for complete guidance :

Tags:

javascript
Author

Admin

Follow Me
Other Articles
Moving Car Animation with CSS and JavaScript
Previous

Moving Car Animation with Javascript and CSS

Compress HTML in CodeIgniter using Hooks
Next

Minify HTML in Codeigniter using Hooks

No Comment! Be the first one.

Leave a Reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Mahalaxmi Development Bank’s Participation in NADA Auto Show 2026, Vehicle Loans Available at Attractive Interest Rates
  • Industries have opened, but the government did not pay attention: Chairman Shrestha
  • Nepal’s Imark Nominated for ‘Best Payments Solution’ at Global Fintech Fest
  • Jagdamba Motors Inaugurates 11th Proton Showroom in Birgunj, Launches ‘e.MAS 5’ EV
  • Nepal Life’s ‘Business Excellence Conference’ Concludes, Over 13 Billion in First Premium Income Collected

Tags

adsense ai animate animation animation using HTML and CSS API blog calculator chatgpt Cryptocurrency CSS css animation design Email Facebook featured filemanager file manager free template google htaccess HTML image Instagram interview javascript JQuery jquery ui NADA AutoShow NADA Auto Show 2024 password PHP Progressive Web App PWA QR random react reactjs Rotate travel Twitter vpn youthforum youthsforum youtube

About Us

At Youths Forum, we are passionate about sharing knowledge that empowers students, educators, professionals, and technology enthusiasts.

Our Mission

Our mission is simple: to make technology and education accessible, understandable, and beneficial for everyone. We strive to create content that helps our readers learn new skills and stay updated with industry developments.

RSS RSS

  • Mahalaxmi Development Bank’s Participation in NADA Auto Show 2026, Vehicle Loans Available at Attractive Interest Rates Admin
  • Industries have opened, but the government did not pay attention: Chairman Shrestha Admin
  • Nepal’s Imark Nominated for ‘Best Payments Solution’ at Global Fintech Fest Admin

Quick Links

  • Stock Market Live
  • Parliament Election 2082
Copyright 2026 — Youths Forum. All rights reserved. Blogsy WordPress Theme