Slim fit Anbass jeans (2024)

Table of Contents
Product details More Info

Sustainable

Slim fit Anbass jeans (3)

Sustainable

`); }else{ slides.push('

' + that.getVideoData(images[i].videoUrl) + '

'); } } return slides; })(), addSlidesBefore: images.length+2, addSlidesAfter: images.length+2, }, navigation: { nextEl: '.swiper-product-main .swiper-button-next', prevEl: '.swiper-product-main .swiper-button-prev', }, initialSlide: index, on: { init: function () { let iframes = document.querySelectorAll('.swiper-product-main .swiper-slide iframe'); iframes.forEach(function(element){ element.parentElement.parentElement.classList.add("video-slide"); }); setTimeout(() => { document.body.classList.add('swiperproduct-init'); }, 600) }, afterInit: function(){ let initSlide = document.querySelector(`[data-swiper-slide-index="${this.activeIndex}"]`); initSlide.classList.add('transition-end') } }, }); swiperMain.on('slideChange', function () { swiperThumb.slideTo(swiperMain.activeIndex); let slides = document.querySelectorAll('.swiper-product-main .swiper-slide'); slides.forEach(function(element){ element.classList.remove('transition-end') }) }); swiperMain.on('slideChangeTransitionEnd', function () { let slide = document.querySelector('.swiper-product-main .swiper-slide-active'); slide.classList.add('transition-end'); }); this.vimeoOverlayDesktop(); document.body.classList.add('!overflow-hidden'); }, removeSwiper(){ const swiperMain = document.querySelector('.swiper-product-main').swiper; swiperMain.destroy(); let swiperWrapper = document.querySelector('.swiper-product-main .swiper-wrapper'); swiperWrapper.innerHTML = ''; swiperWrapper.removeAttribute('style'); const swiperThumb = document.querySelector('.swiper-product-thumb').swiper; swiperThumb.destroy(); let swiperThumbWrapper = document.querySelector('.swiper-product-thumb .swiper-wrapper'); swiperThumbWrapper.innerHTML = ''; swiperThumbWrapper.removeAttribute('style'); document.body.classList.remove('!overflow-hidden'); document.body.classList.remove('swiperproduct-init'); document.body.classList.remove('swiperthumb-init'); }, loadSwiperScript(){ let that = this; document.addEventListener('load-swiper-script', (e) => { if(e.detail.load){ that.productSwiperMobile() } }) }, productSwiperMobile(){ let images = this.images; let thatObj = this; const swiper = new Swiper('.swiper-product-mobile', { direction: 'horizontal', slidesPerView: 1, spaceBetween: 0, mousewheel: true, passiveListeners: true, touchReleaseOnEdges: false, a11y: { enabled: false }, pagination: { el: '.swiper-pagination', type: 'bullets', clickable: true, }, virtual: { slides: (function () { const slides = []; for (let i = 0; i < images.length; i += 1) { if(images[i].videoUrl == null){ slides.push(`

Slim fit Anbass jeans (4)

`); } else{ slides.push('

'); } } return slides; })(), addSlidesBefore: images.length+2, addSlidesAfter: images.length+2, }, zoom: { maxRatio: 5, }, on: { afterInit: function () { window.setTimeout(function(){ document.querySelector('.mobile-main-image').classList.add('invisible') document.querySelector('.swiper-product-mobile').classList.remove('hidden') document.querySelector('.swiper-product-mobile').classList.remove('opacity-0') document.querySelector('.mobile-main-image').classList.add('absolute') }, 30) }, resize: function(){ document.querySelector('.swiper-product-mobile .swiper-wrapper').style.height = `${ document.querySelector('.mobile-main-image').offsetHeight}px` }, slideChange: function() { setTimeout(function () { swiper.params.touchReleaseOnEdges = false; }, 10); }, reachEnd: function() { setTimeout(function () { swiper.params.touchReleaseOnEdges = true; }, 20); } }, }); let that = this; window.addEventListener('update-gallery', function(event){ let images = that.images; swiper.virtual.removeAllSlides(); for (let i = 0; i < images.length; i += 1) { if(images[i].videoUrl == null){ swiper.virtual.appendSlide(`

Slim fit Anbass jeans (5)

`) }else{ swiper.virtual.appendSlide('

' + thatObj.getVideoData(images[i].videoUrl) + '

'); } } swiper.slideTo(0); that.vimeoOverlay(); }); this.vimeoOverlay(); }, vimeoOverlay() { let vimeoOverlay = document.querySelectorAll('.vimeo-overlay'); vimeoOverlay.forEach(function(element){ let playPause = true; element.addEventListener('click', function(){ let player = element.nextSibling; if(playPause){ let data = { method: "play" }; player.contentWindow.postMessage(JSON.stringify(data), "*"); }else{ let data = { method: "pause" }; player.contentWindow.postMessage(JSON.stringify(data), "*"); } playPause = !playPause; }) }) }, getVideoData(videoUrl) { if (!videoUrl) { return } let id, type, youtubeRegex, vimeoRegex, useYoutubeNoCookie = false; if (videoUrl.match(/youtube\.com|youtu\.be|youtube-nocookie.com/)) { id = videoUrl.replace(/^\/(embed\/|v\/)?/, '').replace(/\/.*/, ''); type = 'youtube'; youtubeRegex = /^.*(?:(?:youtu\.be\/|v\/|vi\/|u\/\w\/|embed\/)|(?:(?:watch)?\?v(?:i)?=|\&v(?:i)?=))([^#\&\?]*).*/; id = videoUrl.match(youtubeRegex)[1]; if (videoUrl.match(/youtube-nocookie.com/)) { useYoutubeNoCookie = true; } } else if (videoUrl.match(/vimeo\.com/)) { type = 'vimeo'; vimeoRegex = new RegExp(['https?:\\/\\/(?:www\\.|player\\.)?vimeo.com\\/(?:channels\\/(?:\\w+\\/)', '?|groups\\/([^\\/]*)\\/videos\\/|album\\/(\\d+)\\/video\\/|video\\/|)(\\d+)(?:$|\\/|\\?)' ].join('')); id = videoUrl.match(vimeoRegex)[3]; } const videoData = { id: id, type: type, useYoutubeNoCookie: useYoutubeNoCookie } if(videoData.type == 'vimeo'){ return this.initVimeoVideo(videoData) } }, initYoutubeAPI(videoData) { if (document.getElementById('loadYoutubeAPI')) { return; } const params = {}; const loadYoutubeAPI = document.createElement('script'); loadYoutubeAPI.src = 'https://www.youtube.com/iframe_api'; loadYoutubeAPI.id = 'loadYoutubeAPI'; const firstScriptTag = document.getElementsByTagName('script')[0]; firstScriptTag.parentNode.insertBefore(loadYoutubeAPI, firstScriptTag); const host = (videoData.useYoutubeNoCookie) ? 'https://www.youtube-nocookie.com' : 'https://www.youtube.com'; if (this.autoplayVideo) { params.autoplay = this.autoplayVideo; } if (!this.relatedVideos) { params.rel = 0; } const fireYoutubeAPI = document.createElement('script'); fireYoutubeAPI.innerHTML = `function onYouTubeIframeAPIReady() { window.youtubePlayer = new YT.Player('youtube-player', { host: '${host}', videoId: '${videoData.id}', playerVars: ${JSON.stringify(params)}, }); }`; firstScriptTag.parentNode.insertBefore(fireYoutubeAPI, firstScriptTag); }, initVimeoVideo(videoData) { let additionalParams = '', src; const timestamp = new Date().getTime(); const videoId = videoData.id; if (!videoId) return; if (this.autoplayVideo) { additionalParams += '&autoplay=1'; } if (this.loopVideo) { additionalParams += '&loop=1'; } src = 'https://player.vimeo.com/video/' + videoId + '?api=1&player_id=vimeo' + videoId + timestamp + additionalParams; return ( `

` ) }, eventListeners: { ['@update-gallery.window'](event) { this.receiveImages(event.detail); } } } }

M914Y .000.661 OR2

Hyperflex Re-Used

Hyperflex Re-Used comes from eco-friendly raw materials, a mix of reused or recycled materials. Thanks to the blend of regenerated cotton and recycled polyester, Hyperflex Re-Used can be described as the twice eco denim!

` ]; storeArr.push(innerArr); }); return storeArr; }, selectCity: function(){ let self = this; let citySelect = document.querySelector('#select-city'); citySelect.addEventListener('change', function(){ let selectedCity; let newLocations = []; selectedCity = citySelect.value; const bounds = new google.maps.LatLngBounds(); if(selectedCity == 'default-city'){ self.infowindow.close(); self.locations = self.initLocations; self.initLocations.forEach((element, index) => { self._markerHelperFunction(Number(element.latt), Number(element.long), false, index); bounds.extend(new google.maps.LatLng(Number(element.latt), Number(element.long))); }); for (let i = 0; i < self.markers.length; i++) { self.markers[i].setIcon('https://www.replayjeans.com/lu/static/version1718180696/frontend/Syncitgroup/replay/en_US/Hyva_SyncitgroupStoreLocator/images/map-marker.png'); } if(self.enableLocation){ self._displayUserMarker(bounds); } }else{ self.infowindow.close(); self.initLocations.forEach((element, index) => { if(selectedCity == element.city){ newLocations.push(element); self._markerHelperFunction(Number(element.latt), Number(element.long), false, index); self.markers[index].setIcon('https://www.replayjeans.com/lu/static/version1718180696/frontend/Syncitgroup/replay/en_US/Hyva_SyncitgroupStoreLocator/images/map-marker.png'); bounds.extend(new google.maps.LatLng(Number(element.latt), Number(element.long))); } }); for (let i = 0; i < self.markers.length; i++) { self.markers[i].setIcon('https://www.replayjeans.com/lu/static/version1718180696/frontend/Syncitgroup/replay/en_US/Hyva_SyncitgroupStoreLocator/images/map-marker.png'); } self.locations = newLocations; } self.map.fitBounds(bounds); }); }, _swatchValidation() { let self = this, visualSwatches = document.querySelectorAll('.swatch-attribute-options'), dropdownSwatchValidateArr = [], dropdownSwatches = document.querySelectorAll('select.super-attribute-select'); visualSwatches.forEach((element) => { const options = element.querySelectorAll('input[type="radio"]'); options.forEach((element) => { if(element.checked){ self.validateVisualSwatch = true; } }); }); dropdownSwatches.forEach((element) => { if(element.value){ dropdownSwatchValidateArr.push(true); }else{ dropdownSwatchValidateArr.push(false); } }); if( dropdownSwatchValidateArr.every(function(bool){return bool == true}) ){ self.validateDropdownSwatch = true; }else{ self.validateDropdownSwatch = false; } }, _isConfigProduct() { let bodyClass = 'page-product-configurable'; let swatchOptions = document.querySelectorAll('.swatch-options'); if(document.body.classList.contains(bodyClass) && !swatchOptions.length){ this.configWithoutSwatch = true; }else if(document.body.classList.contains(bodyClass)){ this.configWithSwatch = true; }else{ this.simpleProduct = true; } }, _configValidation(){ let self = this, dropdownSwatchValidateArr = [], dropdownSwatches = document.querySelectorAll('select.super-attribute-select'); dropdownSwatches.forEach((element) => { if(element.value){ dropdownSwatchValidateArr.push(true); }else{ dropdownSwatchValidateArr.push(false); } }); if( dropdownSwatchValidateArr.every(function(bool){return bool == true}) ){ self.validateConfigDropdown = true; }else{ self.validateConfigDropdown = false; } }, getConfigProductId: function(event){ this.configProductId = event.detail.productIndex; }, showHideMap(){ this.showStoresIcon = !this.showStoresIcon; }, _appendPriceToPopup(){ let priceContainer = document.querySelector('.product-price-container-pdp .product-price-container-inner'); document.querySelector('.price-container-find-in-store').appendChild(priceContainer) }, _appendPriceToPage(){ let priceContainer = document.querySelector('.price-container-find-in-store .product-price-container-inner'); document.querySelector('.product-price-container-pdp').appendChild(priceContainer) }, closeMapPopup: function(){ this.open = false; let self = this; window.setTimeout(function(){ document.querySelector('.product-info').classList.remove('open-find'); self.reserveMsg = false; }, 300) this._appendPriceToPage(); this.markers = []; this.isInRadius = false; document.querySelector('#select-city').value= 'default-city'; }, showInfo: function (htmlElement){ if(window.innerWidth <= 767){ const closest = htmlElement.closest('.single-store-container-pdp'); closest.classList.toggle('show-hidden-content') } } } } function loadMap(){ let mapReady = new CustomEvent('map-ready'); window.dispatchEvent(mapReady); }

Loading ...

Select all product options

Select all product options

Product details

Slim fit jeans with regular fit and tapered leg for a comfort fit. With an authentic look, the garment is made of 10,5 oz Hyperflex Re-Used Reform indigo stretch cotton denim with a dark stonewashed wash tone. The five pocket item is characterized by the handmade scrapings which creates contrasting colours on used areas. Zip and button fly.

More Info

Composition:

86%COTTON;10%POLYESTER;4%ELASTANE;|||

Sustainable:

recycled fibres

TC RCS CUT 02204699

86% COTTON - 10% RECYCLED POLYESTER - 4% ELASTAN

Care instruction:

Slim fit Anbass jeans (9) Do not bleach

Slim fit Anbass jeans (10) Do not tumble dry

Slim fit Anbass jeans (11) Do not dry clean

Slim fit Anbass jeans (2024)
Top Articles
Latest Posts
Article information

Author: Domingo Moore

Last Updated:

Views: 5876

Rating: 4.2 / 5 (53 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Domingo Moore

Birthday: 1997-05-20

Address: 6485 Kohler Route, Antonioton, VT 77375-0299

Phone: +3213869077934

Job: Sales Analyst

Hobby: Kayaking, Roller skating, Cabaret, Rugby, Homebrewing, Creative writing, amateur radio

Introduction: My name is Domingo Moore, I am a attractive, gorgeous, funny, jolly, spotless, nice, fantastic person who loves writing and wants to share my knowledge and understanding with you.