I am trying to show a notification when a button is clicked. A click of a button actually verifies email authentication. I know to show a div with content with an error message. However, I would like to clear the error message, say, after 5 seconds. I would like to achieve this using CSS. Below is my attempt, it just hides everything. Please inform.
#signup-response{
width: 50%;
margin-left: auto;
margin-right: auto;
text-align: center;
background-color: #FF0000;
margin-top: 20px;
-webkit-transition: opacity 5s ease-in-out;
-moz-transition: opacity 35s ease-in-out;
-ms-transition: opacity 5s ease-in-out;
-o-transition: opacity 5s ease-in-out;
opacity: 0;
}
source
share