$(document).ready(function () { $(function () { $(".element").typed({ strings: ["Mobile / Web Developer"], typeSpeed: 70, showCursor: false, }); }); setTimeout(function () { $(".element2").typed({ strings: ["Hacker"], typeSpeed: 70, showCursor: false, }); }, 3000); $(".links li").click(function () { $('.links li').removeClass('active'); $(this).addClass('active'); }); $('navbar-brand').click(function () { $('.links li').removeClass('active'); $('.links li:firstchild').addClass('active'); }); new WOW().init(); var myChart = document.getElementById('myChart').getContext('2d'); var mySkills = new Chart(myChart, { type: 'bar', data: { labels: ['JAVASCRIPT', 'PHP', 'HTML', 'CSS', 'ANGULAR', 'NODEJS', 'EXPRESS', 'REACT', 'MONGODB', 'FIREBASE', 'MYSQL'], datasets: [{ label: "%", data: [ 100, 80, 100, 100, 90, 90, 90, 80, 90, 90, 90, 0 ], backgroundColor: '#4286f4' }] }, options: { } }); });