UNPKG

ui-humix-lib

Version:

A simple package for implementinghumix design components in react-based or node.js based projects.

15 lines 485 B
<div x-data="{ progress: 0, progressInterval: null, }" x-init=" progressInterval = setInterval(() => { progress = progress + 1; if (progress >= 100) { clearInterval(progressInterval); } }, 100); " class="relative w-full h-2 overflow-hidden bg-gray-100 rounded-full"> <span :style="'width:' + progress + '%'" class="absolute w-24 h-full duration-300 bg-blue-600 ease"></span> </div>