JSFiddle - React, Tailwind, and code Playground

by itzmeamar

HTML

<div class="messageBox">Here we say something very important!</div>

CSS

.messageBox {  
    width:150px;  
    padding:10px;  
    border:1px solid #666;  
    position:fixed; rightright:2%;  
    top:2%;  
    z-index:999;  
    background:#444;
    border:2px solid #333;
    box-shadow:1px 1px 1px orange;
    color:#ccc;
    -webkit-border-radius: 6px; -moz-border-radius: 6px;}

JavaScript

$(document).ready(function(){  
setTimeout(function() {  
$('.messageBox').fadeOut('fast');  
}, 1000); 
});