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) { | |