mirror of https://github.com/4xmen/xshop.git
parent
c947b35bf1
commit
b39b4a43d2
@ -0,0 +1,13 @@
|
|||||||
|
<header class='ParallaxHeaderPin' style="background-image: url('{{$bg??asset('upload/images/'.$data->area->name.'.'.$data->part.'.jpg')}}')">
|
||||||
|
<div class="{{gfx()['container']}}">
|
||||||
|
<h1>
|
||||||
|
{{$title}}
|
||||||
|
</h1>
|
||||||
|
<h2>
|
||||||
|
{{$subtitle}}
|
||||||
|
</h2>
|
||||||
|
<div class="fake-container">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "ParallaxHeaderPin",
|
||||||
|
"version": "1.0",
|
||||||
|
"author": "xStack",
|
||||||
|
"email": "xshop@xstack.ir",
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
|
"url": "https:\/\/xstack.ir",
|
||||||
|
"author_url": "https:\/\/4xmen.ir",
|
||||||
|
"packages": []
|
||||||
|
}
|
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Resources\Views\Segments;
|
||||||
|
|
||||||
|
use App\Models\Part;
|
||||||
|
use App\Models\Setting;
|
||||||
|
use Illuminate\Support\Facades\File;
|
||||||
|
|
||||||
|
class ParallaxHeaderPin
|
||||||
|
{
|
||||||
|
|
||||||
|
public static function onAdd(Part $part = null)
|
||||||
|
{
|
||||||
|
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area->name . '_' . $part->part.'_jpg';
|
||||||
|
$setting->value = null;
|
||||||
|
$setting->type = 'FILE';
|
||||||
|
$setting->size = 6;
|
||||||
|
$setting->title = $part->area->name . ' ' . $part->part.' default image';
|
||||||
|
$setting->save();
|
||||||
|
|
||||||
|
File::copy(__DIR__.'/../../default-assets/bg.jpg',public_path('upload/images/').$part->area->name . '.' . $part->part.'.jpg');
|
||||||
|
}
|
||||||
|
public static function onRemove(Part $part = null)
|
||||||
|
{
|
||||||
|
Setting::where('key',$part->area->name . '_' . $part->part.'_jpg')->first()?->delete();
|
||||||
|
}
|
||||||
|
public static function onMount(Part $part = null)
|
||||||
|
{
|
||||||
|
return $part;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
.ParallaxHeaderPin {
|
||||||
|
background-size: cover;
|
||||||
|
background-attachment: fixed;
|
||||||
|
height: 270px;
|
||||||
|
color: var(--xshop-diff);
|
||||||
|
padding-top: 3rem;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
h2{
|
||||||
|
opacity: .4;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fake-container{
|
||||||
|
background: var(--xshop-background);
|
||||||
|
border-radius: var(--xshop-border-radius);
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
height: 100px;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue