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
| {"lastUpload":"2020-06-18T16:44:53.656Z","extensionVersion":"v3.4.3"} |
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
| {"lastUpload":"2020-06-18T16:44:42.861Z","extensionVersion":"v3.4.3"} |
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
| {"lastUpload":"2019-10-04T08:44:59.297Z","extensionVersion":"v3.4.3"} |
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
| {"lastUpload":"2019-10-04T08:40:26.596Z","extensionVersion":"v3.4.3"} |
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 mainSlider() { | |
| var BasicSlider = $('.slider-active'); | |
| BasicSlider.on('init', function(e, slick) { | |
| var $firstAnimatingElements = $('.single-slider:first-child').find('[data-animation]'); | |
| doAnimations($firstAnimatingElements); | |
| }); | |
| BasicSlider.on('beforeChange', function(e, slick, currentSlide, nextSlide) { | |
| var $animatingElements = $('.single-slider[data-slick-index="' + nextSlide + '"]').find('[data-animation]'); | |
| doAnimations($animatingElements); | |
| }); |
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
| // way one | |
| var i = 1; | |
| $('.owl-carousel .owl-dot').each(function(){ | |
| $(this).text(i); | |
| i++; | |
| }); | |
| //way two | |
| var dot = $('.slideWrap .owl-dot'); |
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
| version | |
| ---------- | |
| node -v | |
| for folder select | |
| ------- | |
| cd Desktop/sinax/sinax | |
| for sass install | |
| -------- |
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
| /* XL Device :1200px. */ | |
| @media (min-width: 1200px) and (max-width: 1500px) { | |
| } | |
| /* LG Device :992px. */ | |
| @media (min-width: 992px) and (max-width: 1200px) { | |
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
| /* =========================================== | |
| Template Name: Site Name | |
| Author: Authore Name | |
| Version: 1.00 | |
| ============================================== */ | |
| /* =========================================== | |
| Table of Content | |
| ============================================== */ |
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
| /** | |
| * Registers a new post type | |
| **/ | |
| function prefix_register_name() { | |
| // Slider coustom post | |
| register_post_type('slide', array( | |
| 'public' => true, | |
| 'label' => 'Slide', | |
| 'labels' => array( | |
| 'name' => 'Slides', |
NewerOlder