Primer Primer Commit

This commit is contained in:
2025-09-21 12:14:02 -04:00
parent 3a03b570f9
commit cda4e957de
362 changed files with 215921 additions and 0 deletions

30
vendor/svganimation/svg.animation.js vendored Normal file
View File

@@ -0,0 +1,30 @@
(function(){
$(window).on('load',function(){
var settings = $.extend({
type: 'oneByOne',
start: 'inViewport',
dashGap: 10,
duration: 100
}, 'body' );
$('svg' ).each(function() {
var iconID = $(this).attr('id');
if(iconID != undefined){
var iconVar = iconID.replace( '-', '' );
window['tc'+iconVar] = new Vivus( iconID, settings );
}
});
$(document).delegate( ".ai-icon", "mouseenter", function() {
var iconID = $(this).find('svg').attr('id');
if(!iconID) return false;
var iconVar = iconID.replace( '-', '' );
window['tc'+iconVar].reset().play();
});
});
})();

7
vendor/svganimation/vivus.min.js vendored Normal file

File diff suppressed because one or more lines are too long