(function($){ // background-position-x var bgx = (function(el){ return typeof el.css('backgroundPositionX') !== 'undefined'; }(/* */)); }(jQuery));
(function($){ // background-position-x var bgx = (function(el){ return typeof el.css('backgroundPositionX') !== 'undefined'; }($('.tabs li:first-child'))); // background css }(jQuery));
(function($){ $('html').addClass(bgx ? 'bgx' : 'no-bgx'); }(jQuery));
.tabs { ul { li { background-position: 2px 8px; background-repeat: no-repeat; background-image: url('../img/marker.gif'); .no-bgx &:hover { background-position-x: 5px; } .no-bgx & { @include transition(all 0.3s ease-out); } } }
Source: https://habr.com/ru/post/156197/
All Articles