Skip to content

Instantly share code, notes, and snippets.

@cloudscape-germany
Last active December 26, 2015 02:19
Show Gist options
  • Select an option

  • Save cloudscape-germany/7077088 to your computer and use it in GitHub Desktop.

Select an option

Save cloudscape-germany/7077088 to your computer and use it in GitHub Desktop.
jQuery Background Easing
<html>
<head>
<style>
#mask {
background-image:url('mask.jpg');
z-index:1;
}
</style>
</head>
<body>
<div id="bottomLayer">
<img src="background.jpg" alt="bgPic" />
</div>
$('#mask').stop().animate({
backgroundPosition: '(230 0)'
}, {
duration: 300,
easing: 'easeInExpo'
})
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment