site.js 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. function map() {
  2. mapboxgl.accessToken = 'pk.eyJ1Ijoia2V2aW50ZXNzaWVyIiwiYSI6ImNrMGdqbjZsczAweWkzcW5yMWt4M2UzamYifQ.Tfarhi-XqGp7iIpwfANSGg';
  3. var map = new mapboxgl.Map({
  4. container: 'carte',
  5. style: 'mapbox://styles/mapbox/streets-v11',
  6. center: [4.9776488, 44.7365818],
  7. zoom: 12,
  8. });
  9. map.addControl(new mapboxgl.NavigationControl());
  10. var marker = new mapboxgl.Marker()
  11. .setLngLat([4.9776488, 44.7365818])
  12. .addTo(map);
  13. var markerHeight = 50, markerRadius = 10, linearOffset = 25;
  14. var popupOffsets = {
  15. 'top': [0, 0],
  16. 'top-left': [0,0],
  17. 'top-right': [0,0],
  18. 'bottom': [0, -markerHeight],
  19. 'bottom-left': [linearOffset, (markerHeight - markerRadius + linearOffset) * -1],
  20. 'bottom-right': [-linearOffset, (markerHeight - markerRadius + linearOffset) * -1],
  21. 'left': [markerRadius, (markerHeight - markerRadius) * -1],
  22. 'right': [-markerRadius, (markerHeight - markerRadius) * -1]
  23. };
  24. var popup = new mapboxgl.Popup({offset: popupOffsets, className: 'my-class'})
  25. .setLngLat(e.lngLat)
  26. .setHTML("<h1>Hello World!</h1>")
  27. .setMaxWidth("300px")
  28. .addTo(map);
  29. var nav = new mapboxgl.NavigationControl();
  30. map.addControl(nav, 'top-left');
  31. }
  32. function filteritem() {
  33. var $card = $('.body-wrapper > .card');
  34. var $cat = $('.cat a');
  35. var $img = $('.body-wrapper .img');
  36. $(".filters .btn").click(function(e) {
  37. // e.preventDefault();
  38. var filter = $(this).attr("data-filter");
  39. var self = $('.body-wrapper');
  40. self.masonryFilter({
  41. filter: function () {
  42. if (!filter) return true;
  43. return $(this).attr("data-filter") == filter;
  44. }
  45. });
  46. });
  47. var $grid = $('#archive .body-wrapper, #calendrier .body-wrapper').masonry({
  48. // columnWidth: 200,
  49. itemSelector: '.card',
  50. gutter: 40,
  51. transitionDuration: '0.2s'
  52. });
  53. $grid.imagesLoaded().progress(function() {
  54. $grid.masonry();
  55. });
  56. }
  57. function slide() {
  58. $('.gal').bxSlider({
  59. responsive: true,
  60. infiniteLoop: true,
  61. preloadImages:'visible',
  62. pager:false,
  63. auto:true
  64. });
  65. $('.gal-salles').slidesjs({
  66. width: 800,
  67. height: 533,
  68. navigation: true,
  69. pagination: false
  70. });
  71. }
  72. function links() {
  73. var $a = $('.dropmenu > ul > li > .no-click');
  74. var $map = $('a#carte');
  75. $a.on('click', function(e) {
  76. e.preventDefault();
  77. })
  78. $map.on('click', function(e) {
  79. e.preventDefault();
  80. })
  81. }
  82. function clickbutton() {
  83. var $button = $('#ajax-test-form .radio label');
  84. $button.on('click', function(){
  85. $(this).parents('.form-data').find('.check').removeClass('check');
  86. $(this).parent('.radio').addClass('check');
  87. });
  88. }
  89. function clicksenddevis() {
  90. var $ok = $('.ok');
  91. var $send = $('#send-valide');
  92. $ok.on('click', function () {
  93. $(this).parent('#send-valide').remove();
  94. })
  95. }
  96. function addclass() {
  97. var $map = $('a#carte');
  98. $map.parents('.content_s').addClass('map')
  99. var $reco_click = $('#reco .title');
  100. var $reco_txt = $('#reco .txt');
  101. $reco_click.on('click', function() {
  102. $reco_txt.toggleClass('open');
  103. $(this).toggleClass('open');
  104. $('html, body').animate({scrollTop:$('#reco').position().top}, 'slow');
  105. })
  106. var $out = $('.opt-out .txt');
  107. $out.on('click', function() {
  108. $(this).parent('.opt-out').toggleClass('open');
  109. })
  110. }
  111. function mapsalles() {
  112. var $salles = $('.fond svg path');
  113. var $content = $('.content .content_salle');
  114. arrayid = [];
  115. $('.content .content_salle#salle_trois_becs').css("visibility", "visible");
  116. $('.fond svg path#salle_trois_becs').css("fill", "#0093a3");
  117. $salles.on('click', function(idsalle) {
  118. var idsalle = this.id;
  119. arrayid.push(idsalle);
  120. $salles.css("fill", "white");
  121. $(this).css("fill", "#0093a3");
  122. $('.content .content_salle').css("visibility", "hidden");
  123. $('.content .content_salle#'+arrayid).css("visibility", "visible");
  124. arrayid.length = 0;
  125. });
  126. var $close = $('.content_salle .header-salles img');
  127. $close.on('click', function () {
  128. $(this).parents('.content_salle').css("visibility", "hidden");
  129. $salles.css("fill", "white");
  130. })
  131. };
  132. function burger() {
  133. $('.navTrigger').click(function(){
  134. $(this).toggleClass('active');
  135. $('.dropmenu').toggleClass('active');
  136. });
  137. }
  138. function ajaxformulaire() {
  139. $(".ok").on('click', function () {
  140. $(this).parent('#send-valide').remove();
  141. location.reload();
  142. });
  143. var form = $('#ajax-test-form');
  144. form.submit(function(e) {
  145. // prevent form submission
  146. e.preventDefault();
  147. // submit the form via Ajax
  148. $.ajax({
  149. url: form.attr('action'),
  150. type: form.attr('method'),
  151. dataType: 'html',
  152. data: form.serialize(),
  153. success: function(result) {
  154. // Inject the result in the HTML
  155. $('#form-result').html(result);
  156. }
  157. });
  158. });
  159. }
  160. function open_pack() {
  161. var $pack = $(".nos_pack .pack .__thumb");
  162. var nbrDiv = $pack.length;
  163. var widtWind = $( window ).width();
  164. if(widtWind <= 530){
  165. var count = 1;
  166. } else if (widtWind <= 1024) {
  167. var count = 2;
  168. } else if (widtWind <= 1200) {
  169. var count = 3;
  170. } else {
  171. var count = 4;
  172. }
  173. $pack.on('click',function(e) {
  174. var href = $(this).find('a').attr('href') ;
  175. if ( href == '#') {
  176. e.preventDefault();
  177. }
  178. var idThis = $(this).parent('.pack').attr('id');
  179. var $more = $('.__more#' + idThis);
  180. $('.__more').removeClass('visible');
  181. $('.triangle').removeClass('visible');
  182. var i = count;
  183. $more.addClass('visible');
  184. $(this).find('.triangle').addClass('visible')
  185. })
  186. var $close = $('.__more .close');
  187. $close.on('click' , function(e) {
  188. console.log('clsick');
  189. $(this).parents('.__more').removeClass('visible');
  190. $('.triangle').removeClass('visible');
  191. })
  192. }
  193. jQuery(document).ready(function(){
  194. tarteaucitron.init({
  195. "privacyUrl": "/charte-cookies", /* Privacy policy url */
  196. "hashtag": "#gestion_des_cookies", /* Open the panel with this hashtag */
  197. "cookieName": "gestion_des_cookies", /* Cookie name */
  198. "orientation": "bottom", /* Banner position (top - bottom) */
  199. "showAlertSmall": false, /* Show the small banner on bottom right */
  200. "cookieslist": false, /* Show the cookie list */
  201. "adblocker": false, /* Show a Warning if an adblocker is detected */
  202. "AcceptAllCta" : true, /* Show the accept all button when highPrivacy on */
  203. "highPrivacy": true, /* Disable auto consent */
  204. "handleBrowserDNTRequest": true, /* If Do Not Track == 1, disallow all */
  205. "removeCredit": false, /* Remove credit link */
  206. "moreInfoLink": true, /* Show more info link */
  207. "useExternalCss": true, /* If false, the tarteaucitron.css file will be loaded */
  208. //"cookieDomain": ".my-multisite-domaine.fr", /* Shared cookie for multisite */
  209. "readmoreLink": "/cookiespolicy" /* Change the default readmore link */
  210. });
  211. addclass();
  212. mapsalles();
  213. clickbutton();
  214. clicksenddevis();
  215. links();
  216. slide();
  217. filteritem();
  218. map();
  219. burger();
  220. if ($('section').is("#nos-packs")) {
  221. open_pack();
  222. }
  223. });