SignIn Form
Please sign in to your account below.
Contents will be displayed here...Page Contents Here
testimonials Object Amazing ServicesSo happy to have their services. Our website is more easy to use. Thanks to websitesandpizza.com
Jeffer cruz
Great ExperienceTeam is so responsive. I love their design sense. I’m so thankful I found websitesandpizza.com
Ari
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(); });
});