mirror of
https://git.wownero.com/wownero/wownero.org-website.git
synced 2024-08-15 01:03:33 +00:00
redesign by cisme
This commit is contained in:
parent
7eb87dac8e
commit
ea1a1872a7
120 changed files with 6391 additions and 5324 deletions
2
js/jquery-3.5.1.min.js
vendored
Normal file
2
js/jquery-3.5.1.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4127
js/jquery.min.js
vendored
Normal file
4127
js/jquery.min.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
0
js/main.js
Normal file
0
js/main.js
Normal file
24
js/plugins.js
Normal file
24
js/plugins.js
Normal file
|
@ -0,0 +1,24 @@
|
|||
// Avoid `console` errors in browsers that lack a console.
|
||||
(function() {
|
||||
var method;
|
||||
var noop = function () {};
|
||||
var methods = [
|
||||
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
|
||||
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
|
||||
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
|
||||
'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn'
|
||||
];
|
||||
var length = methods.length;
|
||||
var console = (window.console = window.console || {});
|
||||
|
||||
while (length--) {
|
||||
method = methods[length];
|
||||
|
||||
// Only stub undefined methods.
|
||||
if (!console[method]) {
|
||||
console[method] = noop;
|
||||
}
|
||||
}
|
||||
}());
|
||||
|
||||
// Place any jQuery/helper plugins in here.
|
14
js/scroll.js
Normal file
14
js/scroll.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
$(document).ready(function() {
|
||||
$(window).scroll( function(){
|
||||
$('.fadein').each( function(i){
|
||||
|
||||
var bottom_of_element = $(this).offset().top + $(this).outerHeight();
|
||||
var bottom_of_window = $(window).scrollTop() + $(window).height();
|
||||
|
||||
if( bottom_of_window > bottom_of_element ){
|
||||
$(this).animate({'opacity':'10'},1000);
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
});
|
6
js/velocity.min.js
vendored
Normal file
6
js/velocity.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
5
js/vendor/jquery-1.12.0.min.js
vendored
Normal file
5
js/vendor/jquery-1.12.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4
js/vendor/modernizr-2.8.3.min.js
vendored
Normal file
4
js/vendor/modernizr-2.8.3.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue