-
Notifications
You must be signed in to change notification settings - Fork 13
/
page sections slide toggle.html
406 lines (210 loc) · 8.99 KB
/
page sections slide toggle.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<!--
begin page sections slide toggle
License : < https://tinyurl.com/s872fb68 >
Version : 0.8.1
SS Version : 7.1
Fluid
Engine
Compatible : Yes
Dependencies : jQuery
Notes : the code is comprised of several tags. all are needed for the
full effect to work
Copyright : 2021-2024 Thomas Creedon
Tom's Web Consulting < http://www.tomsWeb.consulting/ >
-->
<style>
#page {
--twc-psst-toggle-size : 1em; /* toggle size */
--twc-psst-toggle-color : unset; /* toggle color */
/* toggle justification ( alignment ) */
--twc-psst-toggle-justify : flex-start;
}
</style>
<script>
// initialize twc global if needed
if ( window.twc == undefined ) window.twc = { };
twc.psst = {
// duration, a number (milliseconds) or the word slow or fast
duration : '[ enter duration between single quotes replacing square brackets ]',
};
</script>
<!-- do not change anything below, there be the borg here -->
<style>
#page {
--twc-psst-section-visibility : hidden;
}
body.sqs-is-page-editing #page .page-section {
display : flex !important;
}
body:not( .sqs-is-page-editing ) #page .page-section:not( .content-collection ):not( .gallery-section ):not( .user-items-list-section ) {
visibility : var( --twc-psst-section-visibility );
}
/* remove some vertical spacing */
body:not( .sqs-is-page-editing ) .twc-psst.section-height--small:not( .content-collection ):not( .gallery-section ):not( .user-items-list-section ) {
min-height : unset;
}
body:not( .sqs-is-page-editing ) .twc-psst-display-flex {
display : flex;
}
/* begin toggles */
body:not( .sqs-is-page-editing ) .twc-psst .sqs-block-code .sqs-block-content {
height : 100%;
}
x-twc-psst svg,
x-twc-psst-close svg
{
fill : var( --twc-psst-toggle-color );
height : var( --twc-psst-toggle-size );
width : calc( var( --twc-psst-toggle-size ) * 1.66 );
}
body:not( .sqs-is-page-editing ) x-twc-psst-close,
body:not( .sqs-is-page-editing ) .twc-psst
{
cursor : pointer;
}
x-twc-psst,
x-twc-psst-close
{
align-items : center;
display : flex;
height : 100%;
justify-content : var( --twc-psst-toggle-justify );
}
/* begin arrow */
body:not( .sqs-is-page-editing ) x-twc-psst-close .twc-psst-arrow,
body:not( .sqs-is-page-editing ) .twc-psst--open x-twc-psst .twc-psst-arrow
{
transform : rotate( 180deg );
}
/* end arrow */
/* begin plus */
body:not( .sqs-is-page-editing ) x-twc-psst-close .twc-psst-plus use:nth-child( 2 ),
body:not( .sqs-is-page-editing ) .twc-psst--open x-twc-psst .twc-psst-plus use:nth-child( 2 )
{
display : none;
}
/* end plus */
/* end toggles */
</style>
<svg id="twc-psst" display="none" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<!-- arrow -->
<symbol id="twc-psst-arrow" viewBox="0 0 5.3222652 3.2226501">
<path d="M 0.560547,0 0,0.56054 2.662109,3.22265 5.322265,0.56054 4.761718,0 2.660156,2.09961 Z" />
</symbol>
<!-- begin plus -->
<symbol id="twc-psst-plus-horizontal" viewBox="0 0 3 3">
<path d="m 0,1 v 1 h 3 v -1 z" />
</symbol>
<symbol id="twc-psst-plus-vertical" viewBox="0 0 3 3">
<path d="m 1,0 v 3 h 1 v -3 z" />
</symbol>
<!-- end plus -->
</svg>
<script>
$( ( ) => {
const
version = '0.8.1',
s = `
Page Sections Slide Toggle v${ version }
License < https://tinyurl.com/s872fb68 >
© 2021-2024 Thomas Creedon
Tom's Web Consulting < http://www.tomsWeb.consulting >
`
.replace ( /^\s+/gm, '' );
console.log ( s );
const
codeKey = 'twc-psst',
isEditor = $( 'html' )
.hasClass ( 'squarespace-damask' );
let
callback = function ( ) {
const callback = function ( ) {
const isEditing = $( 'body' )
.hasClass ( 'sqs-is-page-editing' );
if ( isEditing ) return; // bail if is editing
$( this )
.toggleClass ( `${ codeKey }--open` );
if ( duration )
$sectionsNext
.slideToggle ( duration );
else
$sectionsNext
.slideToggle ( );
dispatchEvent ( new Event ( 'resize' ) );
}
const
selector = '.page-section',
$this = $( this ),
className = 'twc-psst-display-flex';
let count = $this.attr ( 'data-section-count' );
count = count === undefined ? 1 : Number ( count );
const $sectionsNext = $this
.parents ( selector )
.addClass ( `${ codeKey }` )
.click ( callback )
.nextAll ( selector )
.slice ( 0, count )
.css ( 'display', 'none' );
$this
.parents ( '.col' )
.first ( )
.addClass ( className )
.parents ( '.sqs-row' )
.first ( )
.addClass ( className );
},
duration = twc.psst.duration,
selector = `#page .page-section x-${ codeKey }`;
$( selector )
.each ( callback );
callback = function ( ) {
const callback = function ( ) {
$( this )
.parents ( '.page-section' )
.prevAll ( `.${ codeKey }` )
.first ( )
.click ( );
}
$( this ).click ( callback );
}
selector = `#page .page-section x-${ codeKey }-close`;
$( selector ).each ( callback )
if ( isNaN ( duration ) ) {
if ( duration [ 0 ] == '[' )
duration = '';
} else
duration = Number ( duration );
$( '#page' ).css ( '--twc-psst-section-visibility', 'visible' );
// section open when URL hash changes
callback = function ( ) {
const selector = location.hash;
$( selector )
.parents ( '.page-section' )
.prevAll ( `.${ codeKey }:not( .${ codeKey }--open )` )
.first ( )
.click ( );
}
$( window ).on ( 'hashchange', callback );
if ( ! isEditor ) return; // bail if not editor
const config = {
attributes : true
};
callback = ( mutations ) => {
const callback = ( mutation ) => {
if ( mutation.type != 'attributes' ) return; // bail if not attribute
// bail if not attribute class
if ( mutation.attributeName != 'class' ) return;
const isEditing = $( target )
.hasClass ( 'sqs-is-page-editing' );
// bail if has class name sqs-is-page-editing
if ( ! isEditing ) return;
dispatchEvent ( new Event ( 'resize' ) );
};
mutations.forEach ( callback );
};
const observer = new MutationObserver ( callback );
// start listening for changes in element
observer.observe ( document.body, config );
} );
</script>
<!-- end page sections slide toggle -->