Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function(){
- $('a[href^="#"]').on('click',function (e) {
- e.preventDefault();
- var target = this.hash;
- var $target = $(target);
- $('html, body').stop().animate({
- 'scrollTop': $target.offset().top
- }, 900, 'swing', function () {
- window.location.hash = target;
- });
- });
- $(window).scroll(function(){
- if ($(this).scrollTop() > 140) {
- $('.about-img').fadeIn();
- } else {
- $('.about-img').fadeOut();
- }
- });
- $(window).scroll(function(){
- if ($(this).scrollTop() > 400) {
- $('.about-text').fadeIn();
- } else {
- $('.about-text').fadeOut();
- }
- });
- $(window).scroll(function(){
- if ($(this).scrollTop() > 950) {
- $('.skills-box').show("slide", "slow");
- } else {
- $('.skills-box').fadeOut();
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement