feat: support advanced banner configuration

Support to configurate the banner opacity and height.
This commit is contained in:
jeffreytse 2021-06-17 20:39:11 +08:00
parent 9b06eb1ba9
commit cae6e2e549
3 changed files with 47 additions and 12 deletions

View file

@ -0,0 +1,28 @@
{%- include functions.html func='log' level='debug' msg='Get banner value' -%}
{% assign name = 'banner' %}
{%- include functions.html func='get_value' -%}
{% assign banner = return %}
{%- if banner.first -%}
{%- include functions.html func='log' level='debug' msg='Get banner_image value' -%}
{% assign name = 'banner.image' %}
{%- include functions.html func='get_value' -%}
{% assign banner_image = return | relative_url %}
{%- else -%}
{% assign banner_image = banner | relative_url %}
{%- endif -%}
{%- include functions.html func='log' level='debug' msg='Get banner_background value' -%}
{% assign name = 'banner.background' %}
{%- include functions.html func='get_value' -%}
{% assign banner_background = return %}
{%- include functions.html func='log' level='debug' msg='Get banner_opacity value' -%}
{% assign name = 'banner.opacity' %}
{%- include functions.html func='get_value' -%}
{% assign banner_opacity = return %}
{%- include functions.html func='log' level='debug' msg='Get banner_height value' -%}
{% assign name = 'banner.height' %}
{%- include functions.html func='get_value' -%}
{% assign banner_height = return %}

View file

@ -3,11 +3,6 @@
{%- include functions.html func='get_value' -%}
{% assign banner_html = return %}
{%- include functions.html func='log' level='debug' msg='Get banner value' -%}
{% assign name = 'banner' %}
{%- include functions.html func='get_value' -%}
{% assign banner = return %}
{%- include functions.html func='log' level='debug' msg='Get heading value' -%}
{% assign name = 'heading' %}
{%- include functions.html func='get_value' -%}
@ -18,10 +13,25 @@
{%- include functions.html func='get_value' -%}
{% assign subheading = return %}
{% if banner %}
{%- include functions.html func='get_banner' -%}
{% if banner_image %}
<style>
html .page-banner {
height: {{ banner_height }};
}
html .page-banner .page-banner-img > *:first-child {
opacity: {{ banner_opacity }};
}
html[data-theme="dark"] .page-banner .page-banner-img > *:first-child {
opacity: {{ banner_opacity | times: 0.6 }};
}
</style>
<section class="page-banner">
<div class="page-banner-img">
<div style="background-image: url({{ banner | relative_url }})"></div>
<div style="background-image: url({{ banner_image }})"></div>
</div>
<div class="wrapper">
<div class="page-banner-inner">

View file

@ -1,15 +1,12 @@
{%- include functions.html func='log' level='debug' msg='Get banner value' -%}
{%- assign name = 'banner' -%}
{%- include functions.html func='get_value' -%}
{% assign banner = return %}
{%- include functions.html func='get_banner' -%}
{%- include functions.html func='log' level='debug' msg='Get header_transparent value' -%}
{%- assign name = 'header_transparent' -%}
{%- include functions.html func='get_value' default=true -%}
{%- assign header_transparent = return -%}
{%- if banner and header_transparent -%}
{%- if banner_image and header_transparent -%}
{%- assign header_transparent_class = "site-header-transparent" -%}
{%- endif -%}