WAVE LO ANTHRACITE
Low top anthracite sneaker
. Crafted from suede leather with textured paint incrusted and technical synthetic leather
. Premium laces with metallic nozzles
. LE FLOW logo in white rubber at the back of each shoe
. Unique black EVA ultra-light rubber sole with white paint injection
. Leather Lining
Handcrafted in Portugal
Fits true to size
- Shipping and returns
- Size chart
Shipping
We offer Free Worldwide Shipping on all orders
Europe : 2 to working days 5 days
Rest of the world : 3 to 10 working days
If you place your order from outside the EU, you might have to pay import duties, depending on the local customs.
Returns
If you are not satisfied with your purchase you can return it to us within 14 days after delivery for a refund.
The items must be returned non-used and in their original condition.
Email us at [email protected]
').insertBefore(staticTabContent);
} else {
tabWrapper.append('
' + hiddenContent.html() + '
');
}
}
} else {
hiddenContent.contents().after().filter(function() {
if(this.nodeType !== 3) return false;
if(this.nodeValue == null) return false;
return this.nodeValue.replace(/\s/g,'').length > 0;
}).wrap('
').end();
}
for (var i = 0; i < tags.length; i++) {
var tag = tags[i];
var nextTag = tags[i + 1];
var content = '';
if (defaultTabEnabled && tagsCount === 0) {
$($(tag).prevAll().get().reverse()).each(function (key, element) {
content += element.outerHTML;
});
if (content !== '') {
staticTabNav.length > 0 ?
$('
' + defaultTabName + '').insertBefore(staticTabNav) :
tabNav.append('
' + defaultTabName + '');
staticTabContent.length > 0 ?
$('
' + content + '
').insertBefore(staticTabContent) :
tabWrapper.append('
' + content + '
');
}
} else if (tagsCount === 0) {
$($(tag).prevAll().get().reverse()).each(function (key, element) {
content += element.outerHTML;
});
$('
' + content + '
').insertAfter(hiddenContent);
}
tagsCount++;
if (staticTabNav.length > 0) {
$('
' + tag.innerHTML + '').insertBefore(staticTabNav);
} else {
tabNav.append('
' + tag.innerHTML + '');
}
if (nextTag !== undefined) {
content = '';
$(tag).nextUntil(nextTag.tagName.toLowerCase()).each(function (key, element) {
content += element.outerHTML;
});
} else {
content = '';
$(tag).nextAll().each(function (key, element) {
content += element.outerHTML;
});
}
if (tagsCount === 0) {
$('#default-tab-content').html(content);
} else {
staticTabContent.length > 0 ?
$('
' + content + '
').insertBefore(staticTabContent) :
tabWrapper.append('
' + content + '
');
}
}
};
var build = function (type) {
var hzTab = $('.smart-tabs-wrapper:eq(' + window.nthTabWrapper + ')').find('.horizontalTab');
var tabLength = 0;
var isAccordion = type === "accordion";
hzTab.easyResponsiveTabs({
type: "default",
width: "auto",
fit: false,
closed: "accordion",
tabWidth: tabLength,
tabContainer: hzTab,
activate: function (event) {
var $tab = $(this);
var $info = $("#tabInfo");
var $name = $("span", $info);
$name.text($tab.text());
$info.show();
}
});
$(".resp-tab-item").each(function (key, tab) {
tabLength += $(tab).innerWidth() + 4;
});
type = (hzTab.width() < tabLength && isAccordion) ? "accordion" : "default";
changeType(hzTab, tabLength, type);
$(window).resize(function () {
type = (hzTab.width() < tabLength && isAccordion) ? "accordion" : "default";
changeType(hzTab, tabLength, type);
});
};
var changeType = function (hzTab, tabLength, type) {
if (hzTab.width() < tabLength && type === "accordion") {
hzTab.find("ul.resp-tabs-list").addClass("display-none");
hzTab.find("ul.resp-tabs-list").removeClass("display-block");
hzTab.find("h2.resp-accordion").addClass("display-block");
hzTab.find("h2.resp-accordion").removeClass("display-none");
} else {
hzTab.find("ul.resp-tabs-list").removeClass("display-none");
hzTab.find("ul.resp-tabs-list").addClass("display-block");
hzTab.find("h2.resp-accordion").removeClass("display-block");
hzTab.find("h2.resp-accordion").addClass("display-none");
}
};
return {
generate: generate,
build: build,
};
};
window.buzzTabs = buzzTabs;
})();
(function ($) {
$.fn.extend({
easyResponsiveTabs: function (options) {
var defaults = {
type: 'default',
width: 'auto',
fit: true,
closed: false,
tabWidth: 100,
tabContainer: $("#horizontalTab"),
activate: function () {
}
}
var options = $.extend(defaults, options);
var opt = options, jtype = opt.type, jfit = opt.fit, jwidth = opt.width, vtabs = 'vertical',
accord = 'accordion';
$(this).bind('tabactivate', function (e, currentTab) {
if (typeof options.activate === 'function') {
options.activate.call(currentTab, e)
}
});
this.each(function () {
var $respTabs = $(this);
var $respTabsList = $respTabs.find('ul.resp-tabs-list');
$respTabs.find('ul.resp-tabs-list li').addClass('resp-tab-item');
$respTabs.css({
'display': 'block',
'width': jwidth
});
$respTabs.find('.resp-tabs-container > div').addClass('resp-tab-content');
jtab_options();
function jtab_options() {
if (jtype == vtabs) {
$respTabs.addClass('resp-vtabs');
}
if (jfit == true) {
$respTabs.css({width: '100%', margin: '0px'});
}
if (jtype == accord) {
$respTabs.addClass('resp-easy-accordion');
$respTabs.find('.resp-tabs-list').css('display', 'none');
}
}
var $tabItemh2;
$respTabs.find('.resp-tab-content').before("
");
var itemCount = 0;
$respTabs.find('.resp-accordion').each(function () {
$tabItemh2 = $(this);
var innertext = $respTabs.find('.resp-tab-item:eq(' + itemCount + ')').html();
$respTabs.find('.resp-accordion:eq(' + itemCount + ')').append(innertext);
$tabItemh2.attr('aria-controls', 'tab_item-' + (itemCount));
itemCount++;
});
var count = 0,
$tabContent;
$respTabs.find('.resp-tab-item').each(function () {
$tabItem = $(this);
$tabItem.attr('aria-controls', 'tab_item-' + (count));
$tabItem.attr('role', 'tab');
if (options.closed !== true && !(options.closed === 'accordion' && !$respTabsList.is(':visible')) && !(options.closed === 'tabs' && $respTabsList.is(':visible'))) {
$respTabs.find('.resp-tab-item').first().addClass('resp-tab-active');
$respTabs.find('.resp-accordion').first().addClass('resp-tab-active');
$respTabs.find('.resp-tab-content').first().addClass('resp-tab-content-active').attr('style', 'display:block');
}
var tabcount = 0;
$respTabs.find('.resp-tab-content').each(function () {
$tabContent = $(this);
$tabContent.attr('aria-labelledby', 'tab_item-' + (tabcount));
tabcount++;
});
count++;
});
$respTabs.find("[role=tab]").each(function () {
var $currentTab = $(this);
$currentTab.click(function (e) {
window.dispatchEvent(new Event('resize'));
var $tabAria = $currentTab.attr('aria-controls');
if ($currentTab.hasClass('resp-accordion') && $currentTab.hasClass('resp-tab-active')) {
$respTabs.find('.resp-tab-content-active').slideUp('', function () {
$(this).addClass('resp-accordion-closed');
});
$currentTab.removeClass('resp-tab-active');
return false;
}
if (!$currentTab.hasClass('resp-tab-active') && $currentTab.hasClass('resp-accordion')) {
$respTabs.find('.resp-tab-active').removeClass('resp-tab-active');
$respTabs.find("[aria-controls=" + $tabAria + "]").addClass('resp-tab-active');
$respTabs.find('.resp-tab-content[aria-labelledby = ' + $tabAria + ']').slideDown().addClass('resp-tab-content-active');
$respTabs.find('.resp-tab-content-active').not('.resp-tab-content[aria-labelledby = ' + $tabAria + ']').slideUp().removeClass('resp-tab-content-active resp-accordion-closed');
} else {
$respTabs.find('.resp-tab-active').removeClass('resp-tab-active');
$respTabs.find('.resp-tab-content-active').removeAttr('style').removeClass('resp-tab-content-active').removeClass('resp-accordion-closed');
$respTabs.find("[aria-controls=" + $tabAria + "]").addClass('resp-tab-active');
$respTabs.find('.resp-tab-content[aria-labelledby = ' + $tabAria + ']').addClass('resp-tab-content-active').attr('style', 'display:block');
}
$currentTab.trigger('tabactivate', $currentTab);
});
$(window).resize(function () {
$respTabs.find('.resp-accordion-closed').removeAttr('style');
});
});
});
}
});
})(jQuery);