mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-26 15:44:24 +01:00
Update Masonry plugin and portfolio
This commit is contained in:
parent
77d4252b75
commit
ff604db53f
3 changed files with 61 additions and 29 deletions
|
@ -12,6 +12,21 @@ $(window).on('load', function () {
|
|||
const observer = lozad(); // lazy loads elements with default selector as ".lozad"
|
||||
observer.observe();
|
||||
|
||||
/* ========================================================================= */
|
||||
/* init Masonry for blog list
|
||||
/* ========================================================================= */
|
||||
var grid = document.querySelector('.blog-post');
|
||||
|
||||
if (grid) {
|
||||
var msnry = new Masonry(grid, {
|
||||
percentPosition: true
|
||||
});
|
||||
|
||||
imagesLoaded(grid).on('progress', function() {
|
||||
// layout Masonry after each image loads
|
||||
msnry.layout();
|
||||
});
|
||||
}
|
||||
|
||||
/* ========================================================================= */
|
||||
/* Image Preloader
|
||||
|
@ -21,7 +36,6 @@ function imgIsLoaded(imgElement) {
|
|||
$(imgElement).removeClass("unloaded");
|
||||
}
|
||||
|
||||
|
||||
/* ========================================================================= */
|
||||
/* Code Copy Button
|
||||
/* ========================================================================= */
|
||||
|
|
|
@ -19,40 +19,49 @@
|
|||
{{ with .title }} {{ after (len (index (split . " ") 0)) . | safeHTML }} {{ end }}</span></h2>
|
||||
<div class="border-Rinkusu"></div>
|
||||
</div>
|
||||
<p class="text-center mb-4">
|
||||
{{ .description }}
|
||||
</p>
|
||||
{{"<!-- /Title -->" | safeHTML}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{{ range .portfolio_categories }}
|
||||
{{ $text_color := .text_color}}
|
||||
<div class="row portfolio-category">
|
||||
|
||||
<div class="col-12">
|
||||
<div class="row">
|
||||
{{"<!-- Section Title -->" | safeHTML}}
|
||||
<div class="title text-center">
|
||||
<h2 class="portfolio-category-title" style="background-color: {{ .bg_color}};">
|
||||
{{ with .name }} {{ index (split . " ") 0 | safeHTML }} {{ end }}<span style="color: {{ $text_color }};">
|
||||
{{ with .name }} {{ after (len (index (split . " ") 0)) . | safeHTML }} {{ end }}</span></h2>
|
||||
<div class="pb-2 title text-center">
|
||||
<h2 class="portfolio-category-title" style="background-color: {{ .bg_color }};">
|
||||
{{ with .name }} {{ index (split . " ") 0 | safeHTML }} {{ end }}
|
||||
<span style="color: {{ $text_color }};">
|
||||
{{ with .name }} {{ after (len (index (split . " ") 0)) . | safeHTML }} {{ end }}
|
||||
</span>
|
||||
</h2>
|
||||
<div class="border-Rinkusu"></div>
|
||||
</div>
|
||||
{{"<!-- /Section Title -->" | safeHTML}}
|
||||
</div>
|
||||
|
||||
<div class="masonry-wrapper">
|
||||
<div class="masonry">
|
||||
<div class="row portfolio-category" data-masonry='{ "percentPosition": true }'>
|
||||
{{ $category := .name }}
|
||||
{{ range .portfolio_items }}
|
||||
{{- $original := resources.Get .image -}}
|
||||
{{ $thumb := $original.Fit "512x512" }}
|
||||
{{ $image := $original.Fit "1080x1080" }}
|
||||
<a class="masonry-item" href="{{ $image.RelPermalink }}" data-lightbox="{{ $category }}" data-title="{{ .name }}">
|
||||
<img src="{{ $thumb.RelPermalink }}" alt="" class="masonry-content">
|
||||
<div class="item col-sm-4 col-lg-3 my-2">
|
||||
<a class="card bg-transparent" href="{{ $image.RelPermalink }}" data-lightbox="{{ $category }}" data-title="{{ .name }}">
|
||||
<img class="card-img" src="{{ $thumb.RelPermalink }}" alt="">
|
||||
</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<script src="{{ .image_loaded_plugin }}"></script>
|
||||
</section>
|
||||
{{"<!-- /Portfolio Section -->" | safeHTML}}
|
||||
|
|
9
static/plugins/masonry/masonry.pkgd.min.js
vendored
Normal file
9
static/plugins/masonry/masonry.pkgd.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue