403Webshell
Server IP : 104.21.21.239  /  Your IP : 216.73.216.191
Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5
System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64
User : ec2-user ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/home2/domains/nycyouth/js/modules/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/home2/domains/nycyouth/js/modules/progress.js
CNVS.Progress = function() {
	var __core = SEMICOLON.Core;
	var __modules = SEMICOLON.Modules;

	return {
		init: function(selector) {
			if( __core.getSelector(selector, false, false).length < 1 ){
				return true;
			}

			__core.initFunction({ class: 'has-plugin-progress', event: 'pluginProgressReady' });

			selector = __core.getSelector( selector, false );
			if( selector.length < 1 ){
				return true;
			}

			selector.forEach( function(element) {
				var elValue	= element.getAttribute('data-percent') || 90,
					elSpeed	= element.getAttribute('data-speed') || 1200,
					elBar = element.querySelector('.skill-progress-percent');

				elSpeed = Number(elSpeed) + 'ms';

				elBar.style.setProperty( '--cnvs-progress-speed', elSpeed );

				var observer = new IntersectionObserver( function(entries, observer){
					entries.forEach( function(entry) {
						if (entry.isIntersecting) {
							if (!elBar.classList.contains('skill-animated')) {
								__modules.counter(element.querySelector('.counter'));

								if ( element.classList.contains('skill-progress-vertical') ) {
									elBar.style.height = elValue + "%";
									elBar.classList.add('skill-animated');
								} else {
									elBar.style.width = elValue + "%";
									elBar.classList.add('skill-animated');
								}
							}

							observer.unobserve( entry.target );
						}
					});
				}, {rootMargin: '0px 0px 50px'});

				observer.observe( elBar );
			});
		}
	};
}();

Youez - 2016 - github.com/yon3zu
LinuXploit