Sliding In notification effect

Using jQuery and CSS

by Naresh

HTML

<div id="notify">
    Success!
</div>
<button>Clicke me!</button>

CSS

#notify {
  display: none;
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #00cc66;
  color: white;
  border-radius: 5px;
  position: absolute;
  top: 0;
  right: -225px;
  margin-top: 25px;
  margin-right: 25px;
  z-index: 1000; 
}

JavaScript

$(document).ready(function(){
	$('button').click(function(){
  	$('#notify').animate({"right":"0px"}, "5000").css('display', 'block').fadeOut(4000);
  });
});