SignIn Form
Please sign in to your account below.
Contents will be displayed here...
Thanks for reaching out! We have received your query and our team will get back to you shortly.
BACK TO HOME
jQuery(".my-move").mousemove(
function(e){
var offset = jQuery(this).offset();
var xPos = e.pageX - offset.left;
var yPos = e.pageY - offset.top;
var mouseXPercent = Math.round(xPos / jQuery(this).width() * 100);
var mouseYPercent = Math.round(yPos / jQuery(this).height() * 100);
jQuery(this).find('.img-move').each(
function(){
var diffX = jQuery('#Parallax').width() - jQuery(this).width();
var diffY = jQuery('#Parallax').height() - jQuery(this).height();
var myX = diffX * (mouseXPercent / 350);
var myY = diffY * (mouseYPercent / 280);
var cssObj = {
'left': myX + 'px',
'top': myY + 'px'
}
jQuery(this).animate({left: myX, top: myY},{duration: 50, queue: false, easing: 'linear'});
}
);
}
); $(document).ready(function(){
$("#OpenForm").click(function(){
$(".callback_form_area").animate({
width: "toggle"
});
$("#blackback").toggle();
});
$(".closeform").click(function(){$(".callback_form_area").animate({
width: "toggle"
}); $("#blackback").toggle(); });
});