mirror of https://github.com/4xmen/xshop.git
Compare commits
2 Commits
9dd5008ee2
...
5cd729f4ce
Author | SHA1 | Date |
---|---|---|
A1Gard | 5cd729f4ce | 1 week ago |
A1Gard | e82372d5c7 | 1 week ago |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="450" height="90"><path fill="none" stroke="#c5c6c6" d="M31 41c0 19.33 85.066 35 190 35s190-15.67 190-35c0-12.933-38.08-24.228-94.713-30.287"/><circle cx="31.118" cy="42.094" r="12.362" style="fill:none;fill-opacity:.998931;stroke:#c5c6c6;stroke-width:.69;stroke-dasharray:none;stroke-opacity:1"/><circle cx="31.204" cy="42.323" r="4.242" style="fill:maroon;fill-opacity:.998931;stroke:none;stroke-width:.69;stroke-dasharray:none;stroke-opacity:1"/><circle cx="86.201" cy="65.349" r="2.638" style="fill:#ccc;fill-opacity:.998931;stroke:none;stroke-width:.429084;stroke-dasharray:none;stroke-opacity:1"/><circle cx="142.481" cy="72.624" r="2.638" style="fill:#ccc;fill-opacity:.998931;stroke:none;stroke-width:.429084;stroke-dasharray:none;stroke-opacity:1"/><circle cx="214.078" cy="75.719" r="2.638" style="fill:#ccc;fill-opacity:.998931;stroke:none;stroke-width:.429084;stroke-dasharray:none;stroke-opacity:1"/><circle cx="283.972" cy="74.022" r="2.638" style="fill:#ccc;fill-opacity:.998931;stroke:none;stroke-width:.429084;stroke-dasharray:none;stroke-opacity:1"/><circle cx="349.739" cy="66.418" r="2.638" style="fill:#ccc;fill-opacity:.998931;stroke:none;stroke-width:.429084;stroke-dasharray:none;stroke-opacity:1"/><circle cx="394.632" cy="26.596" r="2.638" style="fill:#ccc;fill-opacity:.998931;stroke:none;stroke-width:.429084;stroke-dasharray:none;stroke-opacity:1"/><circle cx="315.84" cy="9.743" r="2.638" style="fill:#ccc;fill-opacity:.998931;stroke:none;stroke-width:.429084;stroke-dasharray:none;stroke-opacity:1"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 440 KiB |
@ -0,0 +1,43 @@
|
|||||||
|
<section id='SamiraProductSlider'>
|
||||||
|
<div class="{{gfx()['container']}}">
|
||||||
|
<div id="samira-container">
|
||||||
|
<div id="sam-nxt" class="sld-btn">
|
||||||
|
<i class="ri-arrow-right-line"></i>
|
||||||
|
</div>
|
||||||
|
<div id="sam-prv" class="sld-btn">
|
||||||
|
<i class="ri-arrow-left-line"></i>
|
||||||
|
</div>
|
||||||
|
<div id="samira-slider">
|
||||||
|
|
||||||
|
@foreach(getCategoryProductBySetting($part->area_name . '_' . $part->part.'_category') as $product)
|
||||||
|
<div class="item slider-content">
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<div class="col-md-8 cloudy">
|
||||||
|
<a href="{{$product->webUrl()}}">
|
||||||
|
<img src="{{$product->imgUrl()}}" alt="{{$product->name}}" loading="lazy">
|
||||||
|
</a>
|
||||||
|
<img src="{{asset('upload/images/index.SamiraProductSlider.webp')}}" alt="" class="bg">
|
||||||
|
<img src="{{asset('upload/images/circle-3d-minify.svg')}}" alt="" class="circle">
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<h4 class="mb-4">
|
||||||
|
{{$product->name}}
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<a href="{{$product->webUrl()}}" class="btn btn-outline-light">
|
||||||
|
{{__("View product")}}
|
||||||
|
<i class="ri-arrow-right-circle-fill float-end"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
@ -0,0 +1,41 @@
|
|||||||
|
import {tns} from "tiny-slider/src/tiny-slider";
|
||||||
|
|
||||||
|
var author ;
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
document.querySelectorAll('#samira-slider')?.forEach(function (el) {
|
||||||
|
if (el.classList.contains('.tns-slider')){
|
||||||
|
console.log('ignore');
|
||||||
|
return 'ignore';
|
||||||
|
}
|
||||||
|
author = tns({
|
||||||
|
container: el,
|
||||||
|
items: 1.5,
|
||||||
|
// edgePadding: 50,
|
||||||
|
autoplay: true,
|
||||||
|
autoplayButton: false,
|
||||||
|
mouseDrag: true,
|
||||||
|
prevButton: false,
|
||||||
|
nextButton: false,
|
||||||
|
autoplayTimeout: 8000,
|
||||||
|
center: true,
|
||||||
|
nav: true,
|
||||||
|
loop:true,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
document.querySelector('#sam-nxt')?.addEventListener('click',function () {
|
||||||
|
if (document.documentElement.getAttribute('dir') === 'rtl'){
|
||||||
|
author.goTo('prev');
|
||||||
|
}else{
|
||||||
|
author.goTo('next');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
document.querySelector('#sam-prv')?.addEventListener('click',function () {
|
||||||
|
if (document.documentElement.getAttribute('dir') !== 'rtl'){
|
||||||
|
author.goTo('prev');
|
||||||
|
}else{
|
||||||
|
author.goTo('next');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "SamiraProductSlider",
|
||||||
|
"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,79 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Resources\Views\Segments;
|
||||||
|
|
||||||
|
use App\Models\Category;
|
||||||
|
use App\Models\Part;
|
||||||
|
use App\Models\Setting;
|
||||||
|
use Illuminate\Support\Facades\File;
|
||||||
|
|
||||||
|
class SamiraProductSlider
|
||||||
|
{
|
||||||
|
public static function onAdd(Part $part = null)
|
||||||
|
{
|
||||||
|
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area_name . '_' . $part->part.'_title';
|
||||||
|
$setting->value = 'Lorem ipsum dolor sit amet';
|
||||||
|
$setting->type = 'TEXT';
|
||||||
|
$setting->size = 6;
|
||||||
|
$setting->title = $part->area_name . ' ' . $part->part .' titles';
|
||||||
|
$setting->save();
|
||||||
|
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area_name . '_' . $part->part.'_category';
|
||||||
|
$setting->value = Category::first()->id;
|
||||||
|
$setting->type = 'CATEGORY';
|
||||||
|
$setting->size = 3;
|
||||||
|
$setting->title = $part->area_name . ' ' . $part->part .' category';
|
||||||
|
$setting->save();
|
||||||
|
|
||||||
|
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area_name . '_' . $part->part.'_bg';
|
||||||
|
$setting->value = gfx()['secondary'];
|
||||||
|
$setting->type = 'COLOR';
|
||||||
|
$setting->data = json_encode(['name' => 'samira-bg']);
|
||||||
|
$setting->size = 3;
|
||||||
|
$setting->title = $part->area_name . ' ' . $part->part .' background color';
|
||||||
|
$setting->save();
|
||||||
|
|
||||||
|
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area_name . '_' . $part->part.'_limit';
|
||||||
|
$setting->value = 4;
|
||||||
|
$setting->size = 6;
|
||||||
|
$setting->type = 'NUMBER';
|
||||||
|
$setting->data = json_encode(['xmin' => 4, 'xmax' => 12]);
|
||||||
|
$setting->title = $part->area_name . ' ' . $part->part. ' limit';
|
||||||
|
$setting->save();
|
||||||
|
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area_name . '_' . $part->part.'_webp';
|
||||||
|
$setting->value = null;
|
||||||
|
$setting->type = 'FILE';
|
||||||
|
$setting->size = 6;
|
||||||
|
$setting->title = $part->area_name . ' ' . $part->part.' background pattern image';
|
||||||
|
$setting->save();
|
||||||
|
File::copy(__DIR__.'/../../default-assets/smoke.webp',public_path('upload/images/').$part->area_name . '.' . $part->part.'.webp');
|
||||||
|
File::copy(__DIR__.'/../../default-assets/circle-3d-minify.svg',public_path('upload/images/').'circle-3d-minify.svg');
|
||||||
|
|
||||||
|
}
|
||||||
|
public static function onRemove(Part $part = null)
|
||||||
|
{
|
||||||
|
Setting::where('key',$part->area_name . '_' . $part->part.'_title')->first()?->delete();
|
||||||
|
Setting::where('key',$part->area_name . '_' . $part->part.'_category')->first()?->delete();
|
||||||
|
Setting::where('key',$part->area_name . '_' . $part->part.'bg')->first()?->delete();
|
||||||
|
Setting::where('key',$part->area_name . '_' . $part->part.'_webp')->first()?->delete();
|
||||||
|
|
||||||
|
}
|
||||||
|
public static function onMount(Part $part = null)
|
||||||
|
{
|
||||||
|
return $part;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,143 @@
|
|||||||
|
#SamiraProductSlider {
|
||||||
|
// scss
|
||||||
|
padding: 4rem 0;
|
||||||
|
background: var(--samira-bg);
|
||||||
|
color: var(--xshop-diff2);
|
||||||
|
|
||||||
|
.container,.container-fluid{
|
||||||
|
position: relative;
|
||||||
|
padding: 2rem 0;
|
||||||
|
&:before{
|
||||||
|
position: absolute;
|
||||||
|
content: ' ';
|
||||||
|
top: 1rem;
|
||||||
|
bottom: 1rem;
|
||||||
|
left: 2rem;
|
||||||
|
right: 2rem;
|
||||||
|
background: #ffffff;
|
||||||
|
background: radial-gradient(circle, rgba(255,255,255,.4) 0%, rgba(0,0,0,0) 100%);
|
||||||
|
|
||||||
|
border-radius: 50%;
|
||||||
|
filter: blur(30px);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
img{
|
||||||
|
width: 100px;
|
||||||
|
transition: 300ms;
|
||||||
|
height: 80vh;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider-content{
|
||||||
|
height: 80vh;
|
||||||
|
//border:1px solid grey;
|
||||||
|
direction: rtl !important;
|
||||||
|
transform: translateX(25%);
|
||||||
|
|
||||||
|
.col-md-4{
|
||||||
|
padding-top: 40vh;
|
||||||
|
a{
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
h4{
|
||||||
|
border-bottom: darkred 1px solid;
|
||||||
|
padding: .5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.cloudy{
|
||||||
|
position: relative;
|
||||||
|
padding-top: 10vh;
|
||||||
|
.bg{
|
||||||
|
opacity: 0;
|
||||||
|
transition: 200ms;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.tns-slide-active{
|
||||||
|
img{
|
||||||
|
width: 100%;
|
||||||
|
height: 50vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
&+.tns-item{
|
||||||
|
direction: ltr !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cloudy{
|
||||||
|
.bg{
|
||||||
|
position: absolute;
|
||||||
|
left: 15%;
|
||||||
|
bottom: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 75%;
|
||||||
|
z-index: -1;
|
||||||
|
object-fit: contain;
|
||||||
|
height: 70vh;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.circle{
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: -10vh;
|
||||||
|
width: 100%;
|
||||||
|
object-fit: scale-down;
|
||||||
|
height: 15vh;
|
||||||
|
transform: translateX(5%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#samira-container {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.sld-btn,.tns-nav{
|
||||||
|
z-index: 70;
|
||||||
|
position: absolute;
|
||||||
|
top: 90%;
|
||||||
|
cursor: pointer;
|
||||||
|
i{
|
||||||
|
font-size: 35px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#sam-nxt{
|
||||||
|
left:calc(20% + 200px);
|
||||||
|
}
|
||||||
|
#sam-prv{
|
||||||
|
left: 20%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tns-nav{
|
||||||
|
display: flex !important;
|
||||||
|
width: 150px;
|
||||||
|
left:calc(20% + 45px);
|
||||||
|
height: 50px;
|
||||||
|
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
button{
|
||||||
|
display: inline-block;
|
||||||
|
margin: 3px;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: var(--xshop-border-radius);
|
||||||
|
background: #ffffff44;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tns-nav-active{
|
||||||
|
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 261 KiB |
Loading…
Reference in New Issue