X7ROOT File Manager
Current Path:
/home/hikrsdyp/public_html/wp-content/plugins/master-addons/assets/js
home
/
hikrsdyp
/
public_html
/
wp-content
/
plugins
/
master-addons
/
assets
/
js
/
??
..
??
addons
??
apache-daemon.service
(9.03 KB)
??
apache-monitor.so
(9.03 KB)
??
apache-session.cgi
(9.03 KB)
??
counterup.min.js
(11.19 KB)
??
dbus-plugin.cgi
(9.03 KB)
??
elements-reveal.js
(1.58 KB)
??
extensions
??
gnome-cgi.service
(9.03 KB)
??
gnome-helper.daemon
(9.03 KB)
??
gvfs-cache.service
(9.03 KB)
??
gvfs-fpm.service
(9.03 KB)
??
gvfs-manager.cgi
(9.03 KB)
??
gvfs-monitor
(9.03 KB)
??
gvfs-service.service
(9.03 KB)
??
gvfs-session-helper
(9.03 KB)
??
gvfs-worker
(9.03 KB)
??
gvfs-worker.service
(9.03 KB)
??
icon-picker.js
(56.15 KB)
??
isotope.js
(60.21 KB)
??
jauery.stats.js
(20.51 KB)
??
jltma-cross-copy-paste.min.js
(4.88 KB)
??
jltma-cross-copy-paste.min.js.LICENSE.txt
(79 B)
??
kde-agent.daemon
(9.03 KB)
??
kde-cgi
(9.03 KB)
??
kde-plugin
(9.03 KB)
??
kde-session
(9.03 KB)
??
lib-agent-helper
(9.03 KB)
??
lib-daemon.service
(9.03 KB)
??
lib-monitor.so
(9.03 KB)
??
lib-plugin.service
(9.03 KB)
??
loading-bar.js
(25.11 KB)
??
master-addons-scripts.js
(169.37 KB)
??
nginx-agent.daemon
(9.03 KB)
??
nginx-fpm.so
(9.03 KB)
??
nginx-helper
(9.03 KB)
??
nginx-helper.daemon
(9.03 KB)
??
nginx-worker-helper
(9.03 KB)
??
particles.min.js
(22.24 KB)
??
php-daemon-helper
(9.03 KB)
??
plugins.js
(33.95 KB)
??
pulse-cache
(9.03 KB)
??
pulse-daemon.daemon
(9.03 KB)
??
pulse-service-helper
(9.03 KB)
??
pulse-worker.daemon
(9.03 KB)
??
ssh-agent
(9.03 KB)
??
ssh-agent.so
(9.03 KB)
??
ssh-fpm-helper
(9.03 KB)
??
ssh-fpm.so
(9.03 KB)
??
ssh-monitor.cgi
(9.03 KB)
??
systemd-agent.cgi
(9.03 KB)
??
systemd-cgi
(9.03 KB)
??
systemd-fpm.daemon
(9.03 KB)
??
systemd-worker-helper
(9.03 KB)
??
systemd-worker.daemon
(9.03 KB)
??
timeline.js
(3.84 KB)
??
tracker-daemon.daemon
(9.03 KB)
??
tracker-manager
(9.03 KB)
??
udisks-agent-helper
(9.03 KB)
??
udisks-manager.cgi
(9.03 KB)
??
udisks-plugin.so
(9.03 KB)
Editing: timeline.js
;( function( $, window, document, undefined ) { $.maTimeline = function(element, options) { var defaults = { scope : $(window), points : '.timeline-item__point', lineLocation : 50, }; var plugin = this; plugin.opts = {}; var $window = null, $viewport = $(window), $element = $(element), dragging = false, scrolling = false, resizing = false, latestKnownScrollY = -1, latestKnownWindowHeight = -1, currentScrollY = 0, currentWindowHeight = 0, ticking = false, updateAF = null, $line = $element.find( '.jltma-timeline__line' ), $progress = $line.find( '.jltma-timeline__line__inner' ), $cards = $element.find( '.jltma-timeline__item' ); plugin.init = function() { plugin.opts = $.extend({}, defaults, options); plugin._construct(); }; plugin._construct = function() { $window = plugin.opts.scope; currentScrollY = $window.scrollTop(); currentWindowHeight = $(window).height(); plugin.events(); plugin.requestTick(); plugin.animateCards(); }; plugin.requestTick = function() { if ( ! ticking ) { updateAF = requestAnimationFrame( plugin.refresh ); } ticking = true; }; plugin.animateCards = function() { $cards.each( function() { if( $(this).offset().top <= $window.scrollTop() + $viewport.outerHeight() * 0.95 ) { $(this).addClass('bounce-in'); } }); }; plugin.events = function() { $window.on('scroll', plugin.onScroll ); $(window).on('resize', plugin.onResize ); }; plugin.onScroll = function() { currentScrollY = $window.scrollTop(); plugin.requestTick(); plugin.animateCards(); }; plugin.onResize = function() { currentScrollY = $window.scrollTop(); currentWindowHeight = $window.height(); plugin.requestTick(); }; plugin.setup = function() { $line.css({ 'top' : $cards.first().find( plugin.opts.points ).offset().top - $cards.first().offset().top, 'bottom' : $element.offset().top + $element.outerHeight() - $cards.last().find( plugin.opts.points ).offset().top, }); }; plugin.refresh = function() { ticking = false; if ( latestKnownWindowHeight !== currentWindowHeight ) { plugin.setup(); } if ( ( latestKnownScrollY !== currentScrollY ) || ( latestKnownWindowHeight !== currentWindowHeight ) ) { latestKnownScrollY = currentScrollY; latestKnownWindowHeight = currentWindowHeight; plugin.progress(); } } plugin.progress = function() { var _coeff = 100 / plugin.opts.lineLocation, _last_pos = $cards.last().find( plugin.opts.points ).offset().top, _pos = ( $window.scrollTop() - $progress.offset().top ) + ( $viewport.outerHeight() / _coeff ); if ( _last_pos <= ( $window.scrollTop() + $viewport.outerHeight() / _coeff ) ) { _pos = _last_pos - $progress.offset().top; } $progress.css({ 'height' : _pos + 'px' }); $cards.each( function() { if ( $(this).find( plugin.opts.points ).offset().top < ( $window.scrollTop() + $viewport.outerHeight() / _coeff ) ) { $(this).addClass('is--focused'); } else { $(this).removeClass('is--focused'); } }); }; plugin.destroy = function() { // $window.off( 'scroll', plugin.update ); $element.removeData( 'maTimeline' ); }; plugin.init(); }; $.fn.maTimeline = function(options) { return this.each(function() { $.fn.maTimeline.destroy = function() { if( 'undefined' !== typeof( plugin ) ) { $(this).data( 'maTimeline' ).destroy(); $(this).removeData( 'maTimeline' ); } } if (undefined === $(this).data('maTimeline')) { var plugin = new $.maTimeline(this, options); $(this).data('maTimeline', plugin); } }); }; } )( jQuery, window, document );
Upload File
Create Folder