V-neck jersey t-shirt (2024)

Table of Contents
Product details More Info FAQs

BEST SELLER

V-neck jersey t-shirt (3)

BEST SELLER

`); }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(`

V-neck jersey t-shirt (4)

`); } else{ slides.push('

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

'); } } 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(`

V-neck jersey t-shirt (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); } } } }

M3591 .000.2660

Find In-Store

V-neck jersey t-shirt (11)

V-neck jersey t-shirt

City:

` ]; 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/nl/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/nl/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/nl/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

V-neck t-shirt in m�lange cotton jersey with regular fit. The short-sleeved garment is refined by the customized print on the side of the sleeves.

More Info

Composition:

100%COTTON;|||

Care instruction:

V-neck jersey t-shirt (13) Do not bleach

V-neck jersey t-shirt (14) Do not tumble dry

V-neck jersey t-shirt (15) Do not dry clean

V-neck jersey t-shirt (2024)

FAQs

What is the point of V-neck t-shirts? ›

Not only does this design accentuate the neck, but it also has the added advantage of making the face appear more slender. So if you have a rounder face, go for the v neck. The subtle exposure of the chest area that comes with wearing a V neck is a way to showcase your physique, if you want to show them what you got!

Are V necks in style in 2024? ›

But with prep's resurgence complete and the '00s now a pillar for 2024 style moodboards, the V-neck sweater has crept back into the zeitgeist to take advantage of the circular motion of fashion's trend cycle.

Is it okay for guys to wear V-necks? ›

This collar shape has caused one or two fashion faux pas in the past, especially when paired with a neckline that's too low or a hairy chest. However, a simple V-neck t-shirt can also look quite sophisticated and elegant.

Who do V necks look good on men? ›

When it comes to upgrading your wardrobe, the best v-neck t-shirts can emphasize your look with the right proportioning. In contrast to traditional crew-neck t-shirts, v-neck cuts elongate the appearance of your neck, which is perfect for anyone who has a shorter neck or broad shoulders.

What body type is V-neck shirt for? ›

While they look good on everyone, V-necks are particularly flattering on those with apple-shaped bodies, short torsos and petite frames.

How do you wear a V-neck jersey? ›

The bottom of the V of the collar should hit at or above the tops of your armpits. Shoulder seams should line up with where your arms meet your shoulders. Sleeves end where your wrist bends (it can look nice to have 1/4″ of the cuff of your dress shirt extending past the end of the sweater sleeve)

Is V-neck outdated? ›

While the V-neck isn't going anywhere anytime soon, it may not be as popular as other styles in 2021. This year we've seen a rise in turtlenecks and crewnecks—both of which offer more coverage than their V-neck counterparts—and that could mean that fewer people are opting for the traditional V-shape these days.

What is out of style in 2024? ›

Oversized clothing has been having quite a moment over the past few years. From oversized sweaters to super baggy jeans, oversized everything has been popular. But fashion experts appear to be ready to take a step back from big clothing in 2024 in favor of more fitted silhouettes.

What are men wearing in 2024? ›

Corduroy jackets and jean jackets are also back in style in 2024. Here too the driving force seems to be a desire to return to the comfortable clothes worn by men a few decades ago. “Taelor has a lot of corduroy jackets which I absolutely love,” Melissa said.

Are V necks more attractive? ›

The Beauty of the V-neck

It also reveals one of the most universally flattering features of the female body – the clavicle or collarbone. The clavicles are the long bones that lay horizontal across the front of your shoulders, connecting the shoulder blades to the sternum.

Do V necks make you look more muscular? ›

Muscular men typically go for a tapered, V-shape shirt that gives them wider shoulders and a skinnier waist. If you're not super muscular, the best starting point is a slim-fit shirt. Normal fits can make you look bulky in the wrong way because they're shapeless.

Can skinny guys wear V-neck? ›

For a slimmer build, the best T-shirts are those with a rounded or crew neckline. A v-neckline that cuts down to your chest, in contrast, will only elongate your neck and draw attention to your slim build.

Who should wear a V-neck T-shirt? ›

The V-neck helps in emphasizing your look with the right proportioning. Another benefit of wearing V-necks is that it shows off a little of your chest area. So if you're someone who frequently goes to the gym and would want your hard work to pay off, then try V-necks.

Do V neck shirts make you look thinner? ›

Pieces to Wear:

V-Neck Jumper: The V-neckline creates a visual elongation of the neck, drawing the eye downward and making the upper body appear slimmer.

Do V necks make you look bigger? ›

Let's just put it straight out there. If you have a generous bust, a V-neck is the most flattering neckline for you. In my experience working as a personal stylist with thousands of women, most women with a larger bust would like to make them look smaller. A V-neck does that.

Why were V-necks popular? ›

V-necks are desirable because of their ability to make your face appear longer and more angular. They are particularly flattering for those with more square or round features.

Why are V-necks flattering? ›

V-necks can visually elongate the neck and draw attention downward, making them a popular choice for those who want to accentuate their collarbones or create a more streamlined look. Face Shape: Face shape can influence necklin.

When to wear a V-neck undershirt? ›

Suitability for Different Body Types: V neck undershirts tend to elongate the neck and create a slimming effect, making them a preferred choice for individuals with shorter necks or rounder faces.

Are V-necks professional? ›

A V-neck T-shirt might be a little too casual for some settings. But with that being said, it can be integrated into a business casual ensemble if paired with a blazer or sweater, and matched with tailored trousers or chinos.

Top Articles
Latest Posts
Article information

Author: Cheryll Lueilwitz

Last Updated:

Views: 5842

Rating: 4.3 / 5 (74 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Cheryll Lueilwitz

Birthday: 1997-12-23

Address: 4653 O'Kon Hill, Lake Juanstad, AR 65469

Phone: +494124489301

Job: Marketing Representative

Hobby: Reading, Ice skating, Foraging, BASE jumping, Hiking, Skateboarding, Kayaking

Introduction: My name is Cheryll Lueilwitz, I am a sparkling, clean, super, lucky, joyous, outstanding, lucky person who loves writing and wants to share my knowledge and understanding with you.