Files
oldpersonalwebsite/assets/js/main.js
T
2018-07-07 17:54:05 -07:00

66 lines
1.5 KiB
JavaScript

/*
Industrious by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
*/
(function($) {
var $window = $(window),
$banner = $('#banner'),
$body = $('body');
// Breakpoints.
breakpoints({
default: ['1681px', null ],
xlarge: ['1281px', '1680px' ],
large: ['981px', '1280px' ],
medium: ['737px', '980px' ],
small: ['481px', '736px' ],
xsmall: ['361px', '480px' ],
xxsmall: [null, '360px' ]
});
// Play initial animations on page load.
$window.on('load', function() {
window.setTimeout(function() {
$body.removeClass('is-preload');
}, 100);
});
// Menu.
$('#menu')
.append('<a href="#menu" class="close"></a>')
.appendTo($body)
.panel({
target: $body,
visibleClass: 'is-menu-visible',
delay: 500,
hideOnClick: true,
hideOnSwipe: true,
resetScroll: true,
resetForms: true,
side: 'right'
});
$('#blog').load('blog.html');
$('#readBlog').on("click", function() {
window.location.href = "blog.html";
});
$('.readMore').on("click", function() {
var whichBlog = $(this).attr('id');
console.log("Loading vlog: " + whichBlog);
window.location.href = "http://arjunpatel.me/blogs/" + whichBlog + ".html";
});
$('#goToMain').on("click", function() {
window.location.href = "http://arjunpatel.me/index.html";
});
$('#goToBlogs').on("click", function() {
window.location.href = "http://arjunpatel.me/blog.html";
});
})(jQuery);