Move Background Image on Mouseover Using jQuery

Today, We want to share with you Move Background Image on Mouseover Using jQuery.In this post we will show you change image position on mouse move, hear for background image move on hover we will give you demo and example for implement.In this post, we will learn about html moving background image code with an example.

Move Background Image on Mouseover Using jQuery

There are the Following The simple About Move Background Image on Mouseover Using jQuery Full Information With Example and source code.

As I will cover this Post with live Working example to develop jQuery Move the background image on mouse over, so the some major files and Directory structures for this example is following below.

  • index.html
  • main.js
Move Background Image on Mouseover Using jQuery
Move Background Image on Mouseover Using jQuery

jquery background parallax mouse move

HTML Markup InterFace

index.html

This is where I will make a simple HTML form and PHP server side source code for our web application. To make the forms simply all souce code copy and write it into your any text editor Like Notepad++, then save file it as index.html.

jQuery for Move Background Image

main.js

$('#live-data-gallery').mousemove(function(e){
    var sidetypex = (e.pageX * -1 / 6);
    var sidetypeY = (e.pageY * -1 / 6);
    $(this).css('background-position', sidetypex + 'px ' + sidetypeY + 'px');
});

CSS Custome Styels

style.css

#live-data-gallery {
overflow: hidden;
background-image: url(http://i.imgur.com/F2FPRMd.jpg);
background-repeat: no-repeat;
background-size: cover;
border-bottom-color: #628027;
border-bottom-width: 5px;
border-bottom: solid;
max-height: 500px;
width: 100%;
}

.background-slide {
margin-left: auto;
margin-right: auto;
max-width: 1002px;
overflow: hidden;
padding-top: 200px;
}

.background-slide img {
height: auto;
margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
width: 80%;
}
jquery background parallax mouse move
Angular 6 CRUD Operations Application Tutorials

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about background-image animate (slide right) on hover.
I would like to have feedback on my Pakainfo.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment