Difference between revisions of "Template:BNU-CHINA/article"

 
(16 intermediate revisions by the same user not shown)
Line 15: Line 15:
 
<script>
 
<script>
 
$(document).ready(function () {
 
$(document).ready(function () {
 
 
     var baseline = $("#top_menu_14").height();
 
     var baseline = $("#top_menu_14").height();
     console.log(baseline - $(".sub-header").height() + "px");
+
     var scrollToHash = function(hash) {
 +
        if (hash.indexOf("#") == 0) {
 +
            var $target = $(hash);
 +
            $("html, body").animate({scrollTop: $target.offset().top - $(".sub-header").height() - baseline + 2}, "slow");
 +
        }
 +
    };
 +
 
  
 
     $(".sub-header").css({
 
     $(".sub-header").css({
        "top": baseline + "px"
+
        "transform": "translate3D(0, -100%, 0)",
 +
        "top": baseline + "px"
 
     });
 
     });
  
 
     $("article h2").each(function (index, item) {
 
     $("article h2").each(function (index, item) {
 +
        var $temp = $(item).clone();
 +
        $temp.children().remove();
 
         $("ul.sub-nav").append($("<li>").append(
 
         $("ul.sub-nav").append($("<li>").append(
 
             $("<a>").addClass("btn-filter btn")
 
             $("<a>").addClass("btn-filter btn")
 
                 .attr("data-tartget", index)
 
                 .attr("data-tartget", index)
                 .text($(item).text())
+
                 .text($temp.text())
 
         ));
 
         ));
 
     });
 
     });
Line 33: Line 41:
 
     $("ul.sub-nav").append($("<li>").append(
 
     $("ul.sub-nav").append($("<li>").append(
 
         $("<a>").addClass("btn-filter btn")
 
         $("<a>").addClass("btn-filter btn")
          .attr("href", "#")
+
            .attr("href", "#")
          .text("Top ▴")
+
            .text("Top ▴")
 
     ));
 
     ));
  
Line 44: Line 52:
 
         if (($(window).scrollTop() <= $(".navbar-siren").height() + baseline)) {
 
         if (($(window).scrollTop() <= $(".navbar-siren").height() + baseline)) {
 
             $(".sub-header").css({
 
             $(".sub-header").css({
                 "transform": "translate3D(0, -100%, 0)",
+
                 "transform": "translate3D(0, -100%, 0)"
 
             });
 
             });
 
         } else {
 
         } else {
 
             $(".sub-header").css({
 
             $(".sub-header").css({
                 "transform": "translate3D(0, 0, 0)",
+
                 "transform": "translate3D(0, 0, 0)"
 
             });
 
             });
 
         }
 
         }
Line 58: Line 66:
 
             }
 
             }
 
         });
 
         });
 +
 +
        if($(window).scrollTop() + $(window).height() == $(document).height()) {
 +
            currentIdx = $("article h2").length - 1;
 +
        }
  
 
         $("ul.sub-nav a").css({
 
         $("ul.sub-nav a").css({
 
             "color": "#278A75"
 
             "color": "#278A75"
 
         });
 
         });
       
+
 
 
         if (currentIdx >= 0) {
 
         if (currentIdx >= 0) {
 
             $($("ul.sub-nav a")[currentIdx]).css({
 
             $($("ul.sub-nav a")[currentIdx]).css({
Line 69: Line 81:
 
         }
 
         }
 
     });
 
     });
 +
 +
    $("a[href]").on("click", function() {
 +
        var hash = this.href.substring(this.href.indexOf("#"));
 +
        scrollToHash(hash);
 +
    });
 +
 +
    scrollToHash(window.location.hash);
 +
 
});
 
});
 
</script>
 
</script>

Latest revision as of 01:33, 19 September 2015