website/_assets/javascripts/main.js

45 lines
1.2 KiB
JavaScript
Raw Normal View History

//= require jquery
// require popper
// require jquery-ui
//= require simple-jekyll-search
//= require bootstrap
//= require bootstrap-sprockets
//= require morphext
// require overhang
2021-02-02 21:24:42 +01:00
/* Set the width of the side navigation to 250px */
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
/* Set the width of the side navigation to 0 */
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
2021-01-28 16:05:16 +01:00
$(document).ready(function () {
2019-08-13 15:16:48 +02:00
var sjs = SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
json: '/search.json',
searchResultTemplate: '<a class="dropdown-item" href="{url}">{title}</a>',
noResultsText: '<a class="dropdown-item" href="#">'+ $("meta[name='no-results']").attr('content') +'</a>',
2019-08-13 15:16:48 +02:00
exclude: ["https://blog.unitoo.it", "https://blog.unitoo.pw"]
});
2019-08-14 15:57:40 +02:00
$(".morphext-bounce-in").Morphext({
animation: "bounceIn",
speed: 2500
});
$(".morphext-bounce-left").Morphext({
animation: "zoomInLeft",
speed: 4500
});
$(".morphext-bounce-up").Morphext({
animation: "bounceInUp",
speed: 6500
});
2019-08-13 15:16:48 +02:00
});