| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- $(document).ready(function(){
- var slider = new Swiper($('.swiper-container'),{
- loop:true,
- nextButton:$('.arrow-right'),
- prevButton:$('.arrow-left'),
- speed:800,
- simulateTouch:true,
- initialSlide:0,
- })
- $('.arrow-right').on('click', function(){
- slider.slideNext(800)
- })
- $('.arrow-left').on('click', function(){
- slider.slidePrev(800)
- })
- $('.menu .burger').on('click', function(){
- $('.menu-mobile').slideToggle(200)
- })
- console.log(slider)
- ymaps.ready(function () {
- var myMap = new ymaps.Map('map', {
- center: [54.621076,39.747109],
- zoom: 18
- }, {
- searchControlProvider : 'yandex#search'
- })
- myMap.geoObjects.add(new ymaps.Placemark([54.620954, 39.747420], {
- iconCaption: 'Центр медицинской профилактики'
- }, {
- preset: 'islands#blueCircleDotIconWithCaption',
- iconCaptionMaxWidth: '200'
- }));
- });
- })
-
|