2026-01-17 11:41:46 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, onMounted, onUnmounted } from 'vue'
|
|
|
|
|
import { useRouter } from 'vue-router'
|
|
|
|
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
const videoRef = ref<HTMLVideoElement>()
|
|
|
|
|
const canvasRef = ref<HTMLCanvasElement>()
|
|
|
|
|
const photos = ref<string[]>([])
|
|
|
|
|
const currentPhotoIndex = ref(0)
|
|
|
|
|
const isCapturing = ref(false)
|
2026-01-17 13:20:17 +07:00
|
|
|
const isAutoCapturing = ref(false)
|
|
|
|
|
const countdown = ref(0)
|
2026-01-17 11:41:46 +07:00
|
|
|
const stream = ref<MediaStream | null>(null)
|
|
|
|
|
|
|
|
|
|
const totalPhotos = 4
|
|
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await startCamera()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
stopCamera()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const startCamera = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const constraints = {
|
|
|
|
|
video: {
|
|
|
|
|
facingMode: 'user',
|
2026-01-17 13:20:17 +07:00
|
|
|
width: { ideal: 720 },
|
|
|
|
|
height: { ideal: 960 }
|
2026-01-17 11:41:46 +07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stream.value = await navigator.mediaDevices.getUserMedia(constraints)
|
|
|
|
|
if (videoRef.value) {
|
|
|
|
|
videoRef.value.srcObject = stream.value
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Error accessing camera:', error)
|
|
|
|
|
alert('ไม่สามารถเข้าถึงกล้องได้ กรุณาตรวจสอบสิทธิ์การใช้งานกล้อง')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const stopCamera = () => {
|
|
|
|
|
if (stream.value) {
|
|
|
|
|
stream.value.getTracks().forEach(track => track.stop())
|
|
|
|
|
stream.value = null
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-17 13:20:17 +07:00
|
|
|
const captureSinglePhoto = () => {
|
2026-01-17 11:41:46 +07:00
|
|
|
if (!videoRef.value || !canvasRef.value || isCapturing.value) return
|
|
|
|
|
|
|
|
|
|
isCapturing.value = true
|
|
|
|
|
|
|
|
|
|
const video = videoRef.value
|
|
|
|
|
const canvas = canvasRef.value
|
|
|
|
|
const context = canvas.getContext('2d')
|
|
|
|
|
|
|
|
|
|
if (!context) return
|
|
|
|
|
|
2026-01-17 13:20:17 +07:00
|
|
|
const videoWidth = video.videoWidth
|
|
|
|
|
const videoHeight = video.videoHeight
|
|
|
|
|
|
|
|
|
|
// คำนวณขนาดสำหรับ 3:4 aspect ratio
|
|
|
|
|
const targetAspectRatio = 3/4 // width:height = 3:4
|
|
|
|
|
let cropWidth, cropHeight, cropX, cropY
|
|
|
|
|
|
|
|
|
|
if (videoWidth / videoHeight > targetAspectRatio) {
|
|
|
|
|
// ภาพกว้างกว่าที่ต้องการ - ครอบด้านข้าง
|
|
|
|
|
cropHeight = videoHeight
|
|
|
|
|
cropWidth = videoHeight * targetAspectRatio
|
|
|
|
|
cropX = (videoWidth - cropWidth) / 2
|
|
|
|
|
cropY = 0
|
|
|
|
|
} else {
|
|
|
|
|
// ภาพสูงกว่าที่ต้องการ - ครอบด้านบน/ล่าง
|
|
|
|
|
cropWidth = videoWidth
|
|
|
|
|
cropHeight = videoWidth / targetAspectRatio
|
|
|
|
|
cropX = 0
|
|
|
|
|
cropY = (videoHeight - cropHeight) / 2
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-17 16:23:06 +07:00
|
|
|
// ตั้งค่าขนาด canvas เป็น 3:4 (360x480) - ลดขนาดเพื่อป้องกัน localStorage quota exceeded
|
|
|
|
|
const finalWidth = 360
|
|
|
|
|
const finalHeight = 480
|
2026-01-17 13:20:17 +07:00
|
|
|
|
|
|
|
|
canvas.width = finalWidth
|
|
|
|
|
canvas.height = finalHeight
|
2026-01-17 11:41:46 +07:00
|
|
|
|
2026-01-17 13:20:17 +07:00
|
|
|
// วาดภาพที่ครอบแล้วไปยัง canvas
|
|
|
|
|
context.drawImage(
|
|
|
|
|
video,
|
|
|
|
|
cropX, cropY, cropWidth, cropHeight, // ตำแหน่งและขนาดที่ครอบจาก video
|
|
|
|
|
0, 0, finalWidth, finalHeight // ตำแหน่งและขนาดใน canvas
|
|
|
|
|
)
|
2026-01-17 11:41:46 +07:00
|
|
|
|
2026-01-17 16:23:06 +07:00
|
|
|
// แปลงเป็น base64 ด้วย quality 0.7 เพื่อลดขนาด
|
|
|
|
|
const photoDataUrl = canvas.toDataURL('image/jpeg', 0.7)
|
2026-01-17 11:41:46 +07:00
|
|
|
photos.value.push(photoDataUrl)
|
|
|
|
|
currentPhotoIndex.value++
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
isCapturing.value = false
|
2026-01-17 13:20:17 +07:00
|
|
|
}, 200)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const startAutoCapture = () => {
|
|
|
|
|
if (isAutoCapturing.value) return
|
|
|
|
|
|
|
|
|
|
isAutoCapturing.value = true
|
|
|
|
|
photos.value = []
|
|
|
|
|
currentPhotoIndex.value = 0
|
|
|
|
|
|
|
|
|
|
const captureNextPhoto = () => {
|
|
|
|
|
if (currentPhotoIndex.value >= totalPhotos) {
|
|
|
|
|
// ถ่ายครบแล้ว ไปหน้าถัดไป
|
|
|
|
|
isAutoCapturing.value = false
|
|
|
|
|
proceedToNext()
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// นับถอยหลังสำหรับรูปปัจจุบัน
|
|
|
|
|
countdown.value = 3
|
|
|
|
|
|
|
|
|
|
const countdownInterval = setInterval(() => {
|
|
|
|
|
countdown.value--
|
|
|
|
|
if (countdown.value <= 0) {
|
|
|
|
|
clearInterval(countdownInterval)
|
|
|
|
|
countdown.value = 0
|
|
|
|
|
|
|
|
|
|
// ถ่ายภาพ
|
|
|
|
|
captureSinglePhoto()
|
|
|
|
|
|
|
|
|
|
// ถ่ายรูปต่อไปหลังจาก delay สั้นๆ
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
captureNextPhoto()
|
|
|
|
|
}, 500)
|
|
|
|
|
}
|
|
|
|
|
}, 1000)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// เริ่มถ่ายรูปแรก
|
|
|
|
|
captureNextPhoto()
|
2026-01-17 11:41:46 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const proceedToNext = () => {
|
2026-01-17 16:23:06 +07:00
|
|
|
try {
|
|
|
|
|
// เคลียร์ cached images ที่เก่าออกก่อนเพื่อให้มีพื้นที่
|
|
|
|
|
const keysToRemove = []
|
|
|
|
|
for (let i = 0; i < localStorage.length; i++) {
|
|
|
|
|
const key = localStorage.key(i)
|
2026-01-17 22:45:48 +07:00
|
|
|
if (key && (key.startsWith('photobooth-1x4-') || key.startsWith('photobooth-2x2-'))) {
|
2026-01-17 16:23:06 +07:00
|
|
|
keysToRemove.push(key)
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-01-17 22:45:48 +07:00
|
|
|
keysToRemove.forEach(key => {
|
|
|
|
|
if (key !== null) {
|
|
|
|
|
localStorage.removeItem(key)
|
|
|
|
|
}
|
|
|
|
|
})
|
2026-01-17 16:23:06 +07:00
|
|
|
|
|
|
|
|
// เก็บรูปภาพไว้ใน localStorage
|
|
|
|
|
localStorage.setItem('photobooth-photos', JSON.stringify(photos.value))
|
|
|
|
|
stopCamera()
|
|
|
|
|
router.push('/printstep')
|
|
|
|
|
} catch (error) {
|
|
|
|
|
if (error instanceof DOMException && error.name === 'QuotaExceededError') {
|
|
|
|
|
alert('รูปภาพมีขนาดใหญ่เกินไป กรุณาลองใหม่อีกครั้งหรือใช้รูปภาพขนาดเล็กลง')
|
|
|
|
|
console.error('localStorage quota exceeded:', error)
|
|
|
|
|
} else {
|
|
|
|
|
console.error('Error saving photos:', error)
|
|
|
|
|
alert('เกิดข้อผิดพลาดในการบันทึกภาพ')
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-01-17 11:41:46 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const goBack = () => {
|
|
|
|
|
stopCamera()
|
|
|
|
|
router.push('/selectsource')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const retakePhoto = () => {
|
|
|
|
|
photos.value = []
|
|
|
|
|
currentPhotoIndex.value = 0
|
2026-01-17 13:20:17 +07:00
|
|
|
isAutoCapturing.value = false
|
|
|
|
|
countdown.value = 0
|
2026-01-17 11:41:46 +07:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="shooting-container">
|
|
|
|
|
<header class="header">
|
|
|
|
|
<button @click="goBack" class="back-button">← กลับ</button>
|
|
|
|
|
<h1>ถ่ายภาพ</h1>
|
|
|
|
|
<span class="photo-counter">{{ currentPhotoIndex }}/{{ totalPhotos }}</span>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<section class="camera-section">
|
|
|
|
|
<div class="camera-container">
|
|
|
|
|
<video
|
|
|
|
|
ref="videoRef"
|
|
|
|
|
autoplay
|
|
|
|
|
playsinline
|
|
|
|
|
muted
|
|
|
|
|
class="camera-video"
|
|
|
|
|
></video>
|
|
|
|
|
<canvas ref="canvasRef" class="hidden-canvas"></canvas>
|
|
|
|
|
|
|
|
|
|
<div class="camera-overlay">
|
|
|
|
|
<div class="capture-guide">
|
|
|
|
|
<div class="guide-frame"></div>
|
|
|
|
|
</div>
|
2026-01-17 13:20:17 +07:00
|
|
|
|
|
|
|
|
<!-- Countdown overlay -->
|
|
|
|
|
<div v-if="countdown > 0" class="countdown-overlay">
|
|
|
|
|
<div class="countdown-info">รูปที่ {{ currentPhotoIndex + 1 }}</div>
|
|
|
|
|
<div class="countdown-number">{{ countdown }}</div>
|
|
|
|
|
</div>
|
2026-01-17 11:41:46 +07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<button
|
2026-01-17 13:20:17 +07:00
|
|
|
@click="startAutoCapture"
|
|
|
|
|
:disabled="isAutoCapturing || currentPhotoIndex >= totalPhotos"
|
2026-01-17 11:41:46 +07:00
|
|
|
class="capture-button"
|
2026-01-17 13:20:17 +07:00
|
|
|
:class="{ capturing: isAutoCapturing }"
|
2026-01-17 11:41:46 +07:00
|
|
|
>
|
2026-01-17 13:20:17 +07:00
|
|
|
<span v-if="!isAutoCapturing && currentPhotoIndex === 0">📷 ถ่ายทั้ง 4 รูป</span>
|
|
|
|
|
<span v-else-if="isAutoCapturing">กำลังถ่าย...</span>
|
|
|
|
|
<span v-else>ถ่ายเสร็จแล้ว</span>
|
2026-01-17 11:41:46 +07:00
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<button
|
2026-01-17 13:20:17 +07:00
|
|
|
v-if="currentPhotoIndex > 0 && !isAutoCapturing"
|
2026-01-17 11:41:46 +07:00
|
|
|
@click="retakePhoto"
|
|
|
|
|
class="retake-button"
|
|
|
|
|
>
|
|
|
|
|
ถ่ายใหม่ทั้งหมด
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section class="preview-section" v-if="photos.length > 0">
|
|
|
|
|
<h3>ภาพที่ถ่ายแล้ว</h3>
|
|
|
|
|
<div class="photo-preview">
|
|
|
|
|
<div
|
|
|
|
|
v-for="(photo, index) in photos"
|
|
|
|
|
:key="index"
|
|
|
|
|
class="preview-item"
|
|
|
|
|
>
|
|
|
|
|
<img :src="photo" :alt="`Photo ${index + 1}`" />
|
|
|
|
|
<span class="photo-number">{{ index + 1 }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.shooting-container {
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
background: #000;
|
|
|
|
|
color: white;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-button {
|
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
|
color: white;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.3);
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header h1 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.photo-counter {
|
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.camera-section {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.camera-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
2026-01-17 13:20:17 +07:00
|
|
|
max-width: 400px;
|
|
|
|
|
aspect-ratio: 3/4;
|
2026-01-17 11:41:46 +07:00
|
|
|
border-radius: 16px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.camera-video {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hidden-canvas {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.camera-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-17 13:20:17 +07:00
|
|
|
.countdown-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
animation: countdownFade 1s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.countdown-info {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: white;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.countdown-number {
|
|
|
|
|
font-size: 8rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: white;
|
|
|
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
|
|
|
|
|
animation: countdownPulse 1s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-17 11:41:46 +07:00
|
|
|
.capture-guide {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.guide-frame {
|
|
|
|
|
width: 80%;
|
|
|
|
|
height: 80%;
|
|
|
|
|
border: 3px solid rgba(255,255,255,0.5);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capture-button {
|
|
|
|
|
background: #ff6b6b;
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 1rem 2rem;
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
border-radius: 50px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capture-button:hover:not(:disabled) {
|
|
|
|
|
background: #ff5252;
|
|
|
|
|
transform: scale(1.05);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capture-button:disabled {
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capturing {
|
|
|
|
|
animation: pulse 0.5s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.retake-button {
|
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
|
color: white;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.3);
|
|
|
|
|
padding: 0.75rem 1.5rem;
|
|
|
|
|
border-radius: 25px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.retake-button:hover {
|
|
|
|
|
background: rgba(255,255,255,0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-section {
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-section h3 {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
color: #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.photo-preview {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-item {
|
|
|
|
|
position: relative;
|
2026-01-17 13:20:17 +07:00
|
|
|
width: 60px;
|
|
|
|
|
aspect-ratio: 3/4;
|
2026-01-17 11:41:46 +07:00
|
|
|
border-radius: 8px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-item img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.photo-number {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 4px;
|
|
|
|
|
right: 4px;
|
|
|
|
|
background: rgba(0,0,0,0.7);
|
|
|
|
|
color: white;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
|
0% { transform: scale(1); }
|
|
|
|
|
50% { transform: scale(1.1); }
|
|
|
|
|
100% { transform: scale(1); }
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-17 13:20:17 +07:00
|
|
|
@keyframes countdownFade {
|
|
|
|
|
0% { opacity: 0; }
|
|
|
|
|
10% { opacity: 1; }
|
|
|
|
|
90% { opacity: 1; }
|
|
|
|
|
100% { opacity: 0; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes countdownPulse {
|
|
|
|
|
0% { transform: scale(0.8); opacity: 0; }
|
|
|
|
|
20% { transform: scale(1.2); opacity: 1; }
|
|
|
|
|
50% { transform: scale(1); }
|
|
|
|
|
80% { transform: scale(1.1); }
|
|
|
|
|
100% { transform: scale(1); opacity: 0; }
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-17 11:41:46 +07:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.camera-container {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.photo-preview {
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-item {
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 60px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|