added first three mockups

This commit is contained in:
2026-07-20 05:38:53 -05:00
parent 4dce423c4f
commit f839df7863
864 changed files with 235286 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
// © Copyright 2015 - Archi by Designesia
jQuery(document).ready(function() {
'use strict'; // use strict mode
jQuery(".expand .content").hide();
// expand box
jQuery(".expand .title").on( "click", function() {
var iteration = $(this).data('iteration') || 1;
switch (iteration) {
case 1:
$(this).parent().find('.content').slideToggle();
break;
case 2:
$(this).parent().find('.content').slideToggle();
break;
}
iteration++;
if (iteration > 2) iteration = 1;
$(this).data('iteration', iteration);
});
});