|
@@ -193,7 +193,55 @@ 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 nbrDiv = $pack.length;
|
|
|
+ var widtWind = $( window ).width();
|
|
|
+
|
|
|
+ if(widtWind > 1336){
|
|
|
+ var count = 4;
|
|
|
+ } else if (widtWind > 991) {
|
|
|
+ var count = 3;
|
|
|
+ } else if (widtWind > 430) {
|
|
|
+ var count = 2;
|
|
|
+ } else {
|
|
|
+ var count = 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ console.log('count',count);
|
|
|
+
|
|
|
+ $pack.on('click',function(e) {
|
|
|
+ var nbrThis = $pack.index($(this));
|
|
|
+ var idThis = $(this).attr('id');
|
|
|
+ var $more = $('.__more#' + idThis);
|
|
|
+
|
|
|
+ console.log($more);
|
|
|
|
|
|
+ $('.__more').removeClass('visible');
|
|
|
+
|
|
|
+ if (nbrDiv <= count) {
|
|
|
+ var i = count;
|
|
|
+ $(".nos_pack .pack:nth-child(" + (i) + ")").after($more);
|
|
|
+ $more.addClass('visible');
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
+}
|
|
|
|
|
|
jQuery(document).ready(function(){
|
|
|
tarteaucitron.init({
|
|
@@ -229,4 +277,7 @@ jQuery(document).ready(function(){
|
|
|
filteritem();
|
|
|
map();
|
|
|
burger();
|
|
|
+ if ($('section').is("#nos-packs")) {
|
|
|
+ open_pack();
|
|
|
+ }
|
|
|
});
|