I would like to make a hover on my div with a scale effect in the background which use a parallax effect with this jquery script: https://github.com/pixelcog/parallax.js/
But it doesn't work, how I can do?
$('span').parallax({
imageSrc: 'http://hdwallpaperbackgrounds.net/wp-content/uploads/2016/07/background-pictures-2.jpg',
naturalWidth: 400,
speed: 0.6
});
span {
height: 200px;
width: 400px;
margin: 50px;
display: block;
position: relative;
background-size: 100%;
}
span:hover {
background-size: 120%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://gitcdn.xyz/repo/pixelcog/parallax.js/master/parallax.min.js"></script>
<span> </span>
<span> </span>
<span> </span>
<span> </span>
<span> </span>
Use As much less plugin as needed