mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-14 01:35:05 +08:00
21 lines
618 B
JavaScript
Executable File
21 lines
618 B
JavaScript
Executable File
// --------------------------------------------------------
|
|
// Pretty Photo for Lightbox Image
|
|
// --------------------------------------------------------
|
|
$(document).ready(function() {
|
|
$("a[data-gal^='prettyPhoto']").prettyPhoto();
|
|
});
|
|
|
|
// --------------------------------------------------------
|
|
// Navigation Bar
|
|
// --------------------------------------------------------
|
|
$(window).scroll(function(){
|
|
"use strict";
|
|
var scroll = $(window).scrollTop();
|
|
if( scroll > 60 ){
|
|
$(".navbar").addClass("scroll-fixed-navbar");
|
|
} else {
|
|
$(".navbar").removeClass("scroll-fixed-navbar");
|
|
}
|
|
});
|
|
|