Server IP : 103.118.17.23 / Your IP : 216.73.216.188 Web Server : Microsoft-IIS/10.0 System : Windows NT RESELLERPLESK22 10.0 build 20348 (Windows Server 2016) AMD64 User : IWAM_plesk(default) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/vhosts/mesa.org.in/httpdocs/js/plugins/raphael_diagram/ |
Upload File : |
jQuery(function($){ var diagramElement = { init: function(content){ this.diagram(content); }, random: function(l, u){ return Math.floor((Math.random()*(u-l+1))+l); }, diagram: function(content){ var t = $(content).find('.kl-diagram'), sizeW = parseInt(t.attr('data-width')), sizeH = sizeW, maincolor = t.attr('data-maincolor'), maintext = t.attr('data-maintext'), fontsize = t.attr('data-fontsize'), textcolor = t.attr('data-textcolor'), distance = t.attr('data-distance') || 5; var extra = sizeW * 0.07, extrHalf = extra/2; var diagramWidth = sizeW + extra, diagramHeight = sizeH + extra, halfW = sizeW/2, halfH = sizeH/2, mainrad = halfW*0.4; var r = Raphael(t[0], diagramWidth, diagramHeight), rad = mainrad - 7, defaultText = maintext, speed = 250; // try to make it responsive r.canvas.setAttribute('preserveAspectRatio', 'xMinYMin meet'); r.canvas.setAttribute('viewBox', '0 0 ' + diagramWidth +' '+ diagramHeight); // r.canvas.removeAttribute('width'); // r.canvas.removeAttribute('height'); // Start Drawing r.circle( (halfW + extrHalf), (halfH + extrHalf), mainrad).attr({ stroke: 'none', fill: maincolor }); var title = r.text( (halfW + extrHalf), (halfH + extrHalf) , defaultText).attr({ font: fontsize, fill: textcolor }).toFront(); r.customAttributes.arc = function(value, color, rad){ var v = 3.6*value, alpha = v == 360 ? 359.99 : v, random = diagramElement.random(91, 240), a = (random-alpha) * Math.PI/180, b = random * Math.PI/180, sx = (halfW + extrHalf) + rad * Math.cos(b), sy = (halfH + extrHalf) - rad * Math.sin(b), x = (halfW + extrHalf) + rad * Math.cos(a), y = (halfH + extrHalf) - rad * Math.sin(a), path = [['M', sx, sy], ['A', rad, rad, 0, +(alpha > 180), 1, x, y]]; return { path: path, stroke: color } } var skill_list = $(content).find('.kl-skills-list li'), skill_list_count = skill_list.length; skill_list.each(function(i){ var t = $(this), color = t.css('background-color'), value = t.attr('data-percent'), text = t.text(), rest = halfW*0.6, defStrokeWid = (rest / skill_list_count) - distance; // minus 5px distance rad += (rest >= 1 ? rest / skill_list_count : 0 ); var z = r.path().attr({ arc: [value, color, rad], 'stroke-width': defStrokeWid }); z.mouseover(function(){ this.animate({ 'stroke-width': defStrokeWid*2 , opacity: .75 }, 1000, 'elastic'); if(Raphael.type != 'VML') //solves IE problem this.toFront(); title.stop().animate({ opacity: 0 }, speed, '>', function(){ this.attr({ text: text + '\n' + value + '%' }).animate({ opacity: 1 }, speed, '<'); }); }).mouseout(function(){ this.stop().animate({ 'stroke-width': defStrokeWid, opacity: 1 }, speed*4, 'elastic'); title.stop().animate({ opacity: 0 }, speed, '>', function(){ title.attr({ text: defaultText }).animate({ opacity: 1 }, speed, '<'); }); }); }); } }; $('.kl-skills-diagram').each(function(index, el) { diagramElement.init( el ); }); });