Hey there! I've been trying to create an animation without using any plugins, but unfortunately, I haven't had much luck so far.
Here's the code I've been working on. If anyone can help me figure this out, I'd really appreciate it!
I'm hoping to get the animation to start only when the user scrolls down to a certain point. You can find my codepen here: https://codepen.io/abcari/pen/pdyPjy
$(window).scroll(function () {
if ($(".skill-level").is(".htcss:visible")) {
$(".htcss").animate({ width: $(".htcss").data('width') + "%" },
2500);
}
});