i commited last idk when , so updates
This commit is contained in:
25
jquery/ui/document.html
Normal file
25
jquery/ui/document.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Test</title>
|
||||
</head>
|
||||
<body>
|
||||
<script src="./progressbar.js"></script>
|
||||
<script src="./easycard.js"></script>
|
||||
|
||||
<progress-bar id="progressbar-test" value="0"></progress-bar>
|
||||
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const bar = document.getElementById('progressbar-test');
|
||||
for (let i = 0; i <= 100; i++) {
|
||||
setTimeout(() => {
|
||||
bar.value = i;
|
||||
}, i * 100);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user