Sha256: fedd129a48cefce702f4d6cc8b192dcb96ab9e7e3534ee009f80ca26c661fdba

Contents?: true

Size: 1.6 KB

Versions: 8

Compression:

Stored size: 1.6 KB

Contents

<script src="{{ site.baseurl }}/assets/javascripts/jquery.fullPage.min.js"></script>
<script src="{{ site.baseurl }}/assets/javascripts/jquery.easing.min.js"></script>
<script>
    $(document).ready(function () {
        $.fn.fullpage({
            anchors: ['bio', 'social'],
            css3: true,
            fixedElements: '.site-notice',
            menu: '#menu',
            navigation: true,
            navigationPosition: 'right',
            resize: false,
            scrollingSpeed: 500,

            afterLoad: function (anchorLink, index) {
                if (index === 1) {
                    $('#section0 .headings, #section0').removeClass('hidden').addClass('fadeInDown');
                    $('.btn-continue').removeClass('hidden').addClass('bounce');
                }
                if (index === 2) {
                    $('#section1 h1, #section1 .social-links').removeClass('hidden').addClass('fadeInUp');
                }
            },

            onLeave: function (index, direction) {
                if (index == 1 && direction == 'down') {
                    $('#section0 .headings, #section0 .btn-continue').addClass('hidden').removeClass('bounce fadeInDown fadeInLeft');
                }
                if (index == 2 && direction == 'up') {
                    $('#section1 h1, #section1 .social-links').addClass('hidden').removeClass('fadeInUp');
                }
            }
        });
    });

</script>

{% if site.google_analytics %}
<script>
$(document).on('click', '[class*="btn"]', function(event) {
    sendGaEvent('Home', 'Click', event.currentTarget);
});
</script>
{% endif %}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jekyll-theme-simple-texture-0.2.3 _includes/home/scripts.html
jekyll-theme-simple-texture-0.2.2 _includes/home/scripts.html
jekyll-theme-simple-texture-0.2.1 _includes/home/scripts.html
jekyll-theme-simple-texture-0.1.8 _includes/home/scripts.html
jekyll-theme-simple-texture-0.1.7 _includes/home/scripts.html
jekyll-theme-simple-texture-0.1.6 _includes/home/scripts.html
jekyll-theme-simple-texture-0.1.5 _includes/home/scripts.html
jekyll-theme-simple-texture-0.1.4 _includes/home/scripts.html