|
@@ -194,21 +194,7 @@ function ajaxformulaire() {
|
|
|
}
|
|
|
|
|
|
function open_pack() {
|
|
|
- var $button_more = $(".nos_pack .__thumbnails .__thumb");
|
|
|
- $button_more.on('click', function(e) {
|
|
|
- event.preventDefault();
|
|
|
- var $more = $(this).siblings('.__more');
|
|
|
-
|
|
|
- if ($(".__more").is(".open")) {
|
|
|
- $(".__more").removeClass('open');
|
|
|
- }
|
|
|
- $more.toggleClass('open');
|
|
|
- });
|
|
|
-
|
|
|
-// click, récupere position div dans le dom
|
|
|
-// affiche après la 4eme positions.
|
|
|
-
|
|
|
- var $pack = $('.nos_pack .pack');
|
|
|
+ var $pack = $(".nos_pack .pack:not('#envie')");
|
|
|
var nbrDiv = $pack.length;
|
|
|
var widtWind = $( window ).width();
|
|
|
|
|
@@ -222,23 +208,28 @@ function open_pack() {
|
|
|
var count = 1;
|
|
|
}
|
|
|
|
|
|
- console.log('count',count);
|
|
|
-
|
|
|
$pack.on('click',function(e) {
|
|
|
+ e.preventDefault();
|
|
|
var nbrThis = $pack.index($(this));
|
|
|
var idThis = $(this).attr('id');
|
|
|
var $more = $('.__more#' + idThis);
|
|
|
|
|
|
- console.log($more);
|
|
|
-
|
|
|
$('.__more').removeClass('visible');
|
|
|
+ $('.triangle').removeClass('visible');
|
|
|
|
|
|
if (nbrDiv <= count) {
|
|
|
var i = count;
|
|
|
$(".nos_pack .pack:nth-child(" + (i) + ")").after($more);
|
|
|
$more.addClass('visible');
|
|
|
+ $(this).find('.triangle').addClass('visible')
|
|
|
}
|
|
|
+ })
|
|
|
|
|
|
+ var $close = $('.__more .close');
|
|
|
+ $close.on('click' , function(e) {
|
|
|
+ e.preventDefault();
|
|
|
+ $(this).parents('.__more').removeClass('visible');
|
|
|
+ $('.triangle').removeClass('visible');
|
|
|
})
|
|
|
|
|
|
}
|
|
@@ -277,7 +268,9 @@ jQuery(document).ready(function(){
|
|
|
filteritem();
|
|
|
map();
|
|
|
burger();
|
|
|
+
|
|
|
if ($('section').is("#nos-packs")) {
|
|
|
open_pack();
|
|
|
}
|
|
|
+
|
|
|
});
|