1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/static/src/js/app.js

23 lines
773 B
JavaScript
Raw Normal View History

2015-10-19 13:04:49 +01:00
var React = require('react');
var ProjectImages = require('./components/project-images');
2015-11-11 16:32:51 +00:00
$(function() { // https://css-tricks.com/snippets/jquery/smooth-scrolling/
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
2015-11-10 23:24:28 +00:00
2015-10-19 13:04:49 +01:00
$(window).load(function(){
$(window).trigger('scroll').trigger('resize');
});
React.render(<ProjectImages />, document.getElementById('project-images'));