This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function heightDetect() | |
| { | |
| $('.main_head').css('height', $(window).height()); | |
| } | |
| heightDetect(); | |
| $(window).resize(heightDetect()); | |
| <header class="main_head main_color_bg parallax-window" data-parallax="scroll" data-image-src="/img/bg.jpg"> | |
| </header> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="preloader"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(".toggle_mnu, .menu_item").click(function() { | |
| $("#sandwich").toggleClass("active"); | |
| if($(".top_mnu").is(":visible")) { | |
| $(".top_mnu").fadeOut(600); | |
| $(".top_mnu li a").removeClass("fadeInUp animated"); | |
| } else { | |
| $(".top_mnu").fadeIn(600); | |
| $(".top_mnu li a").addClass("fadeInUp animated") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setTimeout(function() { | |
| $('#preloader').fadeOut('slow', function() {}); | |
| }, 150); | |
| <div id="preloader"></div> | |
| #preloader | |
| position: fixed | |
| left: 0 | |
| top: 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="main_photo"> | |
| <a href="images/alf.jpg" class="image-link"> | |
| <img src="images/alf.jpg" alt="alf"> | |
| </a> | |
| </div> | |
| .main_photo | |
| img | |
| width: 220px | |
| border-radius: 50% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $("#portfolio_grid").mixItUp(); | |
| <div class="filter_div controls"> | |
| <ul> | |
| <li class="filter active" data-filter="all">Все</li> | |
| <li class="filter" data-filter=".category_1">Сайты</li> | |
| <li class="filter" data-filter=".category_2">Айдентика</li> | |
| <li class="filter" data-filter=".category_3">Логотипы</li> | |
| </ul> | |
| </div> | |
| <div id="portfolio_grid"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(".top_mnu ul").sliphover({ | |
| target: "li", | |
| backgroundColor: 'rgba(255,255,255,.05)', | |
| fontColor: "#FF6347" | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #preloader | |
| position: fixed | |
| left: 0 | |
| top: 0 | |
| z-index: 999 | |
| width: 100% | |
| height: 100% | |
| overflow: visible | |
| background: #fff url('../images/preloader.gif') no-repeat center center | |
NewerOlder