refactor: Change blur image to be implemented in CSS

This commit is contained in:
Thomas A. Christensen II 2024-11-07 08:38:34 -06:00
parent ca49a6a315
commit 1a6519fafb
Signed by: millironx
GPG key ID: B7044A3432851F64
3 changed files with 2 additions and 11 deletions

View file

@ -1,5 +1,5 @@
$(window).on("scroll", function (e) {
oVal = $(window).scrollTop() / 170;
$(".blur").css("opacity", oVal);
oVal = $(window).scrollTop() / 75;
$(".blurred-container .img-src").css("filter", "blur(" + oVal + "px)");
});
$("#motto").fitText();

View file

@ -48,10 +48,6 @@ $peek-height: 25rem;
background-position: center center;
}
.blur {
opacity: 0;
}
.list-main {
position: relative;
background-color: #fff;

View file

@ -7,14 +7,9 @@
</div>
{{ $imgsrc := print "images/" (.Param "cardImage") ".jpg" }}
{{ $mainimg := resources.Get $imgsrc }}
{{ $blurimg := $mainimg.Filter (images.GaussianBlur 100) }}
<div
class="img-src"
style="background-image: url('{{ $mainimg.RelPermalink }}');"
></div>
<div
class="img-src blur"
style="background-image: url('{{ $blurimg.RelPermalink }}');"
></div>
</div>
<br />