W3C 표준에서는 진행률 표시줄이 진행률 요소를 사용하여 특정 작업을 완료하도록 규정합니다. 개발자는 진행률 태그를 사용하여 진행률 표시줄을 표시하고 웹 페이지에 파일 업로드 진행률을 나타냅니다. HTML은 이 태그를 통합하여 웹 개발자에게 막대를 표시하는 간단한 방법을 제공합니다. 이 태그는
구문:
이 진행 요소에는 시작 태그와 종료 태그가 모두 있으며, 아래는 태그의 기본 구문을 보여줍니다. 이는 모든 프로세스의 상태를 의미합니다. 진행률 표시줄에는 인라인 표시 방식이 있습니다.
<Progress bar> …… </Progress bar>
속성은 HTML에서 탐색기의 동작과 같은 정보 요소를 제공합니다. HTML에는 이벤트 속성과 전역 속성이라는 세 가지 속성이 있습니다. 이러한 속성 외에도 진행률 요소에는 두 가지 새로운 속성이 있습니다.
max – 기본값은 1.0이며 작업을 완료하는 데 필요한 총 작업 수를 나타냅니다.
value – 완료해야 할 작업의 양을 지정합니다. 기본값은 1.0 미만으로 할당됩니다. Val 속성이 없으면 진행률 표시줄이 불확실해집니다.
진행률 표시줄의 예로는 파일 첨부, 문서 최초 로드, 웹페이지 로드 등이 있습니다.
진행률 표시줄에는 확정 및 불확정이라는 두 가지 상태가 있습니다. 불확실한 진행률 표시줄의 경우 value 속성에 null 값을 할당하면 스타일 지정이 더 쉬워집니다. 반면에 확정 상태의 경우 아래 예에 표시된 대로 최대값과 값이라는 두 가지 새로운 속성을 정의합니다. 수평 막대로 작업을 표시하기 위해 모션과 같은 모양을 사용합니다. 해당 작업이 작업에 의존하지 않는 경우 < 미터> 태그가 할당되었습니다. 브라우저 호환성과 관련하여 Internet Explorer를 제외한 모든 브라우저를 지원합니다(부분 지원). 브라우저 호환성 진행 표시줄에 따라 다르게 보일 수 있습니다. 이 기사에서는 max 및 Val 속성이 있는 막대의 확정 상태에 중점을 둘 것입니다.
예: 이제 min 및 val 속성이 있는 진행률 표시줄의 기본 구현을 살펴보겠습니다.
<!DOCTYPE html> <html> <body> Downloading on process: <progress value="19" max="90"> </progress> <p><strong>Note:</strong> The progress tag is used to represent a progress bar for quite period of time. </p> </body> </html> </p> <p><strong>출력:</strong></p> <p><img src="https://img.php.cn/upload/article/000/000/000/172543966030232.png" alt="HTML 진행 표시줄" ></p> <h4>1. CSS 사용</h4> <p>다음으로 모든 플랫폼에서 스타일리시한 진행률 표시줄이 일관되게 보이도록 만드는 방법을 살펴보겠습니다. 진행률 표시줄을 마크업하기 위해 값 선택기를 사용하고 진행률 요소의 너비 및 높이와 같은 크기를 조정하여 시각적으로 매력적인 진행률 표시줄을 만듭니다. 그러나 다른 브라우저를 사용하면 이 프로세스가 복잡해질 수 있습니다. 브라우저는 작업 완료 수준을 일부 조정합니다. 입체효과를 적용하여 html 바를 좀 더 생생하게 보이게 하고 있습니다.</p> <p><strong>예:</strong></p> <pre class="brush:php;toolbar:false"><!DOCTYPE> <html> <head> <h1> Using Style Sheet in Progress bar </h1> <style> progress{width:400px;height:40px} </style> </head> <body> <progress value="60" max="100"></progress> </body> </html>
출력:
스타일시트를 사용하면 배경색 지정, 높이 지정 등을 통해 이 요소에 스타일 규칙을 추가할 수 있습니다. 색상은 rgba() 함수를 적용하여 적용할 수 있습니다. 진행률 표시줄 요소는 결과를 표시하기 위해 다양한 색상으로 수행할 수 있습니다. 이는 '클래스' 속성과 매핑됩니다. 일반적으로 진행률 표시줄은 왼쪽에서 오른쪽으로 이동하여 작업이 초기 '0'부터 시작하여 목표에 도달하면 결과를 표시합니다.
예:
<!DOCTYPE> <html> <head> <h1> Using Style Sheet in Progress bar demo </h1> <style> progress{width:200px;height:20px;background-color:pink; border-radius: 4px;position: absolute; right: 0px; top: 80px; box-shadow: 0 3px 6px rgba(255, 255, 0, 255) inset;} </style> </head> <body> <progress value="40" max="100"></progress> </body> </html>
출력:
참고: 브라우저마다 바를 약간 변형하여 처리합니다. Chrome은 기본 스타일을 대체하여 Webkit 스타일시트를 사용합니다.샘플:
진행률 표시줄 :: – WebKit-진행률 표시줄
진행률 표시줄 크기도 class 속성을 사용하여 소형, 중형, 대형으로 다양하게 변경할 수 있습니다.
아래 코드는 확실하지 않으며 일부 프로세스가 한동안 진행되고 있음을 보여줍니다.
예:
<!DOCTYPE> <html> <head> <h1> Using Style Sheet in Progress bar </h1> <style> progress{width:120px;height:20px} </style> </head> <body> <progress max="100"> <span>20</span>% </progress> </body> </html>
출력:
다음 규칙은 자바스크립트를 사용하여 수행해야 합니다.
예시 #1
<!DOCTYPE> <html> <body> <script> var pgx=2; function bar(){ var prog = document.getElementById ('progress demo'); setInterval (function () { if(pgx<90){ pgx++; prog.value =pgx; } bar(); }, 100); } </script> <progress id="progress demo" min="2" max="100"></progress> <br/><br/> <button onclick="bar()"> submit</button> </body> </html>
출력:
예시 #2
<!DOCTYPE html> <html lang="en"> <head> <title>implementation of HTML progress Tag</title> </head> <body> <h2> <i>Task in scheduled Progress </i></h2> <p>Process: <progress id="bar" value="1" max="100"><span>0</span>%</progress></p> <script type="text/javascript"> var k = 0; var progb = document.getElementById("bar"); function count(){ if(k < 100){ k = k + 1; progb.value = k; progb.getElementsByTagName("span")[0].textContent = k; } setTimeout("count()", 400); } count(); </script> </body> </html>
Output:
NOTE: Even you can add some animation effects to the progress bar. To do so, we have to assign some interval timings by assigning some value to it and directing incrementing infinitely, to make the situation control conditional statement used.Therefore, this article explains how to create a highly flexible and lightweight HTML progress bar. Finally, we have briefly seen the concept as the activity indicator. This element indicates how to load a page or make some registration process and probably represents a percentage of 100 for the max value. When the length of the time task is unknown, developers usually use this mode in the installation or loading page scenario. And that’s even an implementation using Html5 with some cool effects.
위 내용은 HTML 진행 표시줄의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!