mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 11:39:15 +00:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { $, component$, QwikMouseEvent } from '@builder.io/qwik'
|
|
|
|
export const handleVideo = $((ev: QwikMouseEvent<HTMLVideoElement>) => {
|
|
const targetVideo = ev.target as HTMLVideoElement
|
|
targetVideo.play()
|
|
})
|
|
|
|
export default component$(() => {
|
|
return (
|
|
<section class="relative border-t border-gray-200 dark:border-slate-800">
|
|
<div class="max-w-6xl mx-auto px-4 sm:px-6 ">
|
|
<div class="py-0 md:py-5">
|
|
<video
|
|
class={'cursor-pointer'}
|
|
onClick$={handleVideo}
|
|
style={'height:600px'}
|
|
width="100%"
|
|
height="400"
|
|
autoPlay
|
|
muted
|
|
playsInline
|
|
>
|
|
<source
|
|
src="https://leifer-landing-page.s3.us-east-2.amazonaws.com/xbmcc-kx99h.webm"
|
|
type='video/mp4; codecs="hvc1"'
|
|
/>
|
|
|
|
<source
|
|
src="https://leifer-landing-page.s3.us-east-2.amazonaws.com/xbmcc-kx99h.webm"
|
|
type="video/webm"
|
|
/>
|
|
</video>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
})
|