JS와 SVG를 사용하여 스크롤에 그리는 방법을 알아보세요.
스크롤 그리기
스크롤에 삼각형을 그리는 SVG와 자바 스크립트를 사용하여 - 그것은이어야 있습니다 <path> 요소 :
예
<svg id="mySVG">
<path fill="none" stroke="red" stroke-width="3"
id="triangle" d="M150 0 L75 200 L225 200 Z"/>
</svg>
<script>
// Get the id of the
<path> element and the length of <path>
var triangle =
document.getElementById("triangle");
var length = triangle.getTotalLength();
// The start position of the drawing
triangle.style.strokeDasharray =
length;
// Hide the triangle by offsetting dash. Remove this line to
show the triangle before scroll draw
triangle.style.strokeDashoffset =
length;
// Find scroll percentage on scroll (using cross-browser
properties), and offset dash same amount as percentage scrolled
window.addEventListener("scroll", myFunction);
function myFunction()
{
var scrollpercent = (document.body.scrollTop +
document.documentElement.scrollTop) / (document.documentElement.scrollHeight
- document.documentElement.clientHeight);
var draw = length *
scrollpercent;
// Reverse the drawing (when scrolling upwards)
triangle.style.strokeDashoffset = length - draw;
}
</script>
»그것을 자신을 시도