mirror of
https://github.com/istiyakaminsanto/tailShape.git
synced 2025-12-22 03:47:01 +00:00
145 lines
6.6 KiB
HTML
145 lines
6.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="./../../../dist/tailshape.css">
|
|
<link rel="stylesheet" href="https://demos.creative-tim.com/notus-js/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css">
|
|
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js" defer></script>
|
|
<title>Slider </title>
|
|
</head>
|
|
<body>
|
|
|
|
<button class="dark_mode_button_custom_style" id="dark_mood_toogler">
|
|
d
|
|
</button>
|
|
|
|
<!-- slider 1 start -->
|
|
<section class="section_divider">
|
|
<div>Slider 1 </div>
|
|
</section>
|
|
|
|
|
|
<div class="min-w-screen min-h-screen bg-indigo-500 flex items-center justify-center px-5 py-5">
|
|
<div class="w-full mx-auto rounded-3xl shadow-lg bg-white px-10 pt-16 pb-10 text-gray-600" style="max-width: 350px" x-data="app()">
|
|
<div class="overflow-hidden relative mb-10">
|
|
<div class="overflow-hidden cursor-grab relative" @pointerdown="touchstartX=$event.screenX,touchstartY=$event.screenY" @pointerup="touchendX=$event.screenX,touchendY=$event.screenY,$nextTick(()=>handleSwipe())">
|
|
<template x-for="(item,index) in slides">
|
|
<div class="w-full overflow-hidden text-center select-none" x-show="item.show" x-transition:enter="transition duration-300 transform ease" :x-transition:enter-start="currentTransition.start" :x-transition:enter-end="currentTransition.end" x-transition:leave="absolute top-0 left-0 transition duration-300 transform ease" :x-transition:leave-start="previousTransition.start" :x-transition:leave-end="previousTransition.end">
|
|
<div class="w-64 h-64 border rounded-full mx-auto mb-10 overflow-hidden bg-cover bg-center" :style="`background-image:url(${item.img})`"></div>
|
|
<h2 x-text="item.title" class="font-bold text-xl text-indigo-500 mb-3"></h2>
|
|
<p x-text="item.body" class="text-sm leading-tight h-16"></p>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
<div class="flex justify-center">
|
|
<template x-for="(item,index) in slides">
|
|
<span :id="`slideDot${index}`" class="w-2 h-2 rounded-full mx-1" :class="{'bg-indigo-500':index==currentIndex,'bg-gray-200':index!==currentIndex}"></span>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function app() {
|
|
return {
|
|
touchstartX: 0,
|
|
touchstartY: 0,
|
|
touchendX: 0,
|
|
touchendY: 0,
|
|
previousIndex: 0,
|
|
currentIndex: 0,
|
|
previousTransition: {
|
|
start: null,
|
|
end: null,
|
|
},
|
|
currentTransition: {
|
|
start: null,
|
|
end: null,
|
|
},
|
|
slides: [
|
|
{
|
|
show:true,
|
|
img: 'https://source.unsplash.com/random/?work',
|
|
title: 'Lorem ipsum',
|
|
body: 'Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
|
|
},
|
|
{
|
|
img: 'https://source.unsplash.com/random/?tree',
|
|
title: 'Dolor sit amet',
|
|
body: 'Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.',
|
|
},
|
|
{
|
|
img: 'https://source.unsplash.com/random/?building',
|
|
title: 'Consectetur',
|
|
body: 'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.',
|
|
}
|
|
],
|
|
handleSwipe: function() {
|
|
// Stop
|
|
if( this.touchstartX - this.touchendX > -20 && this.touchstartX - this.touchendX < 20 ) return;
|
|
// Set previous index
|
|
this.previousIndex = this.currentIndex;
|
|
// Swipe
|
|
if (this.touchendX < this.touchstartX) {
|
|
// Swipe left
|
|
this.currentIndex = Math.min(this.slides.length-1,this.currentIndex+1);
|
|
this.previousTransition.start = 'translate-x-none opacity-1';
|
|
this.previousTransition.end = '-translate-x-1/4 opacity-0';
|
|
this.currentTransition.start = 'translate-x-1/4 opacity-0';
|
|
this.currentTransition.end = 'translate-x-none opacity-1';
|
|
} else {
|
|
// Swipe right
|
|
this.currentIndex = Math.max(0,this.currentIndex-1);
|
|
this.previousTransition.start = 'translate-x-none opacity-1';
|
|
this.previousTransition.end = 'translate-x-1/4 opacity-0';
|
|
this.currentTransition.start = '-translate-x-1/4 opacity-0';
|
|
this.currentTransition.end = 'translate-x-none opacity-1';
|
|
}
|
|
// Check previous index
|
|
if( this.previousIndex !== this.currentIndex ) {
|
|
this.showSlide();
|
|
}
|
|
},
|
|
showSlide: function() {
|
|
for(let i = 0; i < this.slides.length; i++){
|
|
this.slides[i].show = i == this.currentIndex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- slider 1 end -->
|
|
|
|
|
|
<!-- start of script section -->
|
|
<script type="text/javascript">
|
|
let toogler = document.getElementById("dark_mood_toogler");
|
|
let doc_html_el = document.getElementsByTagName('html')[0];
|
|
|
|
doc_html_el.addEventListener('keyup',(e)=>{
|
|
// key 220 is the backward slash , need to press ctrl+ \ to activate or deactivate darkmode
|
|
if(e.ctrlKey && e.keyCode =='220'){
|
|
doc_html_el.className =='' ? doc_html_el.classList.add('dark'):doc_html_el.classList.remove('dark');
|
|
|
|
}
|
|
})
|
|
doc_html_el.addEventListener('keyup',(e)=>{
|
|
// key 191 is the forward slash , need to press ctrl+ / to show or hide the darkmode button
|
|
if(e.ctrlKey && e.keyCode =='191'){
|
|
toogler.style.display =='block'? toogler.style.display = 'none':toogler.style.display ='block';
|
|
|
|
}
|
|
})
|
|
toogler.addEventListener('click',()=>{
|
|
doc_html_el.className =='' ? doc_html_el.classList.add('dark'):doc_html_el.classList.remove('dark');
|
|
console.log(doc_html_el.className);
|
|
})
|
|
</script>
|
|
<!-- end of script section -->
|
|
|
|
</body>
|
|
</html> |