// Полёт из Калининграда во Владивосток через Москву
map.setCenter([54.704815, 20.466380], 10);
map.panTo([
[ 55.751574, 37.573856 ],
[ 43.134091, 131.928478 ]
], {
callback: function () {
alert('Прилетели!');
}
});
document.querySelector('#showMap_1').addEventListener('click', function() {
myMap.setZoom( 15 );
myMap.panTo([55.66837606904998,37.484163499999944],{flying:1});
});
$(window).scroll(function(){
$('.cart-stripe').css('left',-$(window).scrollLeft());
});
$('#addClientButton').click(function(){
postAddClient();
return false;
});
$.post( "index.php", { name: "John" } )
.done(function( data ) {
alert( "Ответ сервера: " + data );
});
$(function(){
$(document).on('submit', '[data-action="add"]', function (e) {
e.preventDefault();
$.ajax({
url: this.action,
type: this.method,
data: {
name: $('#name').val(),
check: ($('#check').prop('checked'))?1:0
}
}).done(function (data) {
$(".stat_ok").html(data);
$(".stat_ok").fadeIn();
});
});
});
$(function(){
$(document).on('submit', '[data-action="add"]', function (e) {
e.preventDefault();
$.ajax({
url: this.action,
type: this.method,
data: $( this ).serialize()
}).done(function (data) {
$(".stat_ok").html(data);
$(".stat_ok").fadeIn();
});
});
});
$(window).scroll(function(){
if ($(this).scrollTop() > 1){
$(".top_panel").stop().animate({height: "60px"}, 200);
$(".logo_cont").stop().animate({lineHeight: "60px"}, 200);
$(".main_menu").stop().animate({lineHeight: "60px"}, 200);
}else{
$(".top_panel").stop().animate({height: "90px"}, 200);
$(".logo_cont").stop().animate({lineHeight: "90px"}, 200);
$(".main_menu").stop().animate({lineHeight: "90px"}, 200);
}
});
var flagPosition=0;
$(window).scroll(function(){
if ($(this).scrollTop() > 1){
if(flagPosition!=1) {
flagPosition=1;
$(".top_panel").stop().animate({height: "60px"}, 200);
$(".logo_cont").stop().animate({lineHeight: "60px"}, 200);
$(".main_menu").stop().animate({lineHeight: "60px"}, 200);
}
} else {
if(flagPosition!=0) {
flagPosition=0;
$(".top_panel").stop().animate({height: "90px"}, 200);
$(".logo_cont").stop().animate({lineHeight: "90px"}, 200);
$(".main_menu").stop().animate({lineHeight: "90px"}, 200);
}
}
});