Background attachment fixed in css
by Naresh
HTML
<div></div>
CSS
div {
width: 500px;
height: 200px;
background-image: url("http://www.planwallpaper.com/static/images/desktop-year-of-the-tiger-images-wallpaper.jpg");
background-position: top center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
}