mirror of https://github.com/4xmen/xshop.git
added main categories theme part
parent
8a5dec377e
commit
c316001abf
@ -0,0 +1,19 @@
|
|||||||
|
<section class='MainCategoriesSlider'>
|
||||||
|
<div class="{{gfx()['container']}}">
|
||||||
|
<h1>
|
||||||
|
{{getSetting($data->area_name.'_'.$data->part.'_title')}}
|
||||||
|
</h1>
|
||||||
|
<div id="main-cats">
|
||||||
|
@foreach(\App\Models\Category::whereNull('parent_id')->limit(10)->get() as $category)
|
||||||
|
<div class="item slider-content">
|
||||||
|
<a class="main-category" href="{{$category->webUrl()}}">
|
||||||
|
<img src="{{$category->imgUrl()}}" alt="{{$category->name}}" title="{{$category->name}}" >
|
||||||
|
<h4>
|
||||||
|
{{$category->name}}
|
||||||
|
</h4>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
@ -0,0 +1,41 @@
|
|||||||
|
import {tns} from "tiny-slider/src/tiny-slider";
|
||||||
|
|
||||||
|
var maincatz;
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
document.querySelectorAll('#main-cats')?.forEach(function (el) {
|
||||||
|
if (el.classList.contains('.tns-slider')) {
|
||||||
|
console.log('ignore');
|
||||||
|
return 'ignore';
|
||||||
|
}
|
||||||
|
maincatz = tns({
|
||||||
|
container: el,
|
||||||
|
items: 3,
|
||||||
|
autoplay: true,
|
||||||
|
autoplayButton: false,
|
||||||
|
// nextButton: false,
|
||||||
|
controls: false,
|
||||||
|
autoplayHoverPause: true,
|
||||||
|
mouseDrag: true,
|
||||||
|
gutter: 7,
|
||||||
|
slideBy: 1,
|
||||||
|
autoplayTimeout: 5000,
|
||||||
|
responsive: {
|
||||||
|
560: {
|
||||||
|
items: 1,
|
||||||
|
},
|
||||||
|
768: {
|
||||||
|
items: 2,
|
||||||
|
},
|
||||||
|
1000: {
|
||||||
|
items: 2,
|
||||||
|
},
|
||||||
|
1400: {
|
||||||
|
items: 3,
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
// speed:10000,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "MainCategoriesSlider",
|
||||||
|
"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,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Resources\Views\Segments;
|
||||||
|
|
||||||
|
use App\Models\Part;
|
||||||
|
use App\Models\Setting;
|
||||||
|
|
||||||
|
class MainCategoriesSlider
|
||||||
|
{
|
||||||
|
public static function onAdd(Part $part = null)
|
||||||
|
{
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area_name . '_' . $part->part.'_title';
|
||||||
|
$setting->value = 'Main categories';
|
||||||
|
$setting->type = 'TEXT';
|
||||||
|
$setting->size = 4;
|
||||||
|
$setting->title = $part->area_name . ' ' . $part->part .' main categories title';
|
||||||
|
$setting->save();
|
||||||
|
|
||||||
|
}
|
||||||
|
public static function onRemove(Part $part = null)
|
||||||
|
{
|
||||||
|
Setting::where('key',$part->area_name . '_' . $part->part.'_title')->first()?->delete();
|
||||||
|
|
||||||
|
}
|
||||||
|
public static function onMount(Part $part = null)
|
||||||
|
{
|
||||||
|
return $part;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
.MainCategoriesSlider {
|
||||||
|
// scss
|
||||||
|
h1{
|
||||||
|
font-size: 25px;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
padding: 3rem 0;
|
||||||
|
border-radius: var(--xshop-border-radius);
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
.main-category{
|
||||||
|
overflow: hidden;
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
img{
|
||||||
|
width: 100%;
|
||||||
|
height: 400px;
|
||||||
|
object-fit: cover;
|
||||||
|
position: relative;
|
||||||
|
z-index: 5;
|
||||||
|
transition: 500ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4{
|
||||||
|
background: var(--xshop-primary);
|
||||||
|
color: var(--xshop-diff);
|
||||||
|
padding: 5px;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: 200;
|
||||||
|
position: relative;
|
||||||
|
z-index: 7;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover{
|
||||||
|
img{
|
||||||
|
transform: scale(1.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 385 KiB |
Loading…
Reference in New Issue