{ const index = Number(video.dataset.slideIndex || -1); if (index === this.current) { const playPromise = video.play(); if (playPromise && typeof playPromise.catch === 'function') { playPromise.catch(() => {}); } } else { video.pause(); } }); }, start() { if (this.total <= 1) return; this.stop(); this.progress = 0; const step = 50; this.interval = setInterval(() => { this.progress += (step / this.duration) * 100; if (this.progress >= 100) { this.next(); this.progress = 0; } }, step); }, stop() { if (this.interval) { clearInterval(this.interval); this.interval = null; } }, next() { this.current = (this.current + 1) % this.total; this.syncVideoPlayback(); }, prev() { this.current = (this.current - 1 + this.total) % this.total; this.progress = 0; this.syncVideoPlayback(); }, go(i) { this.current = i; this.progress = 0; this.syncVideoPlayback(); } }" :style="sectionHeightStyle()" x-init="start(); $nextTick(() => syncVideoPlayback())" @mouseenter="stop()" @mouseleave="start()">

TICDCE

TICDCE in figures

1 452
Site visits
0
Startups
1
Events
1
Articles

Latest news

Latest news and announcements from the centre.

All news

No news published yet.

Upcoming events

Upcoming meetings and activities.

All events

No upcoming events.

Partners

They trust us.

No partners published yet. Add partners in the admin panel.