HOME


Mini Shell 1.0
DIR: /home/islapiiu/sites/srilekha/js/
Upload File :
Current File : /home/islapiiu/sites/srilekha/js/custom.js
$(document).ready(function () {

    window.onscroll = function () {

        scrollFunction()
    };

    function scrollFunction() {
        if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {

            document.getElementById("logo").style.width = "90px";
            document.getElementById("header2").style.height = "100px";
        } else {
              document.getElementById("logo").style.width = "150px";
            document.getElementById("header2").style.height = "130px";
        }
    }

});