Laptop sleeves - 14 inch | Vandaag besteld, Morgen in huis (2024)

Ben je op zoek naar een laptop sleeve voor jouw 14 inch laptop? Binnen ons assortiment zijn verschillende laptop sleeves 14 inch te vinden. Het is belangrijk om bij het selecteren van een laptop sleeve 14 inch te controleren of de aangegeven lengte en breedte op de productpagina goed overeenkomen met de afmetingen van jouw laptop. De ene 14 inch laptop is namelijk de andere niet, omdat de inch-maat alleen iets zegt over het diagonaal van het beeldscherm en niet over de afmetingen van je laptop.

Meer tonen

9 producten

Filteren en sorteren

sort-ascending

9 producten

'; productList.after(div); this.replaceWithUpdate( data.bottomCmsBlock, this.qs('.amshopby-filters-bottom-cms'), 'amshopby-filters-bottom-cms' ); } //top nav already exist into categoryProducts if (!data.categoryProducts || data.categoryProducts.indexOf('block-filter-top') === -1) { if (!this.qs(this.selectors.top_navigation)) { const navNode = document.createElement('div'), topNavNode = document.createElement('div'), maincontent = this.qs('.column.main'); let childNode; navNode.className = 'catalog-topnav amasty-catalog-topnav'; topNavNode.className = 'block-filter-top'; navNode.appendChild(topNavNode); if (this.qs('.search.results')) { childNode = this.qs('.search.results'); } else { childNode = this.qs('#amasty-shopby-product-list'); } if (childNode.parentElement !== maincontent) { return; } maincontent.insertBefore(navNode, childNode); } this.replaceWithUpdate( data.navigationTop, this.qs(this.selectors.top_navigation), 'top_navigation' ); } }, replaceWithUpdate(content, $element, className) { if (content && $element) { const parent = $element.parentNode, regex = /

'+ ''; if (this.qs('.amwidget-children-categories')) { childNode = this.qs('.amwidget-children-categories').parentNode; } maincontent.insertBefore(catNode, childNode); } } const imageElement = this.qs('.category-image'), descrElement = this.qs('.category-description'); if (data.image) { this.replaceWithUpdate( data.image, imageElement, 'category-image' ); } else { if (imageElement) { imageElement.innerHTML = ''; } } if (data.description) { this.replaceWithUpdate( data.description, descrElement, 'category-description' ); } else { if (descrElement) { descrElement.innerHTML = ''; } } this.qs('title').innerHTML = data.title; if (data.categoryData) { let categoryViewSelector = '.category-view'; const nodeT = document.createElement('div'); nodeT.innerHTML = data.categoryData; this.qs(categoryViewSelector).innerHTML = ''; this.replaceWithUpdate( nodeT.querySelector(categoryViewSelector).innerHTML, this.qs(categoryViewSelector + ' div'), 'category-view-data' ); } }, /** * @public * @return {Object} */ getProductBlock() { let $productsWrappers = this.qsa(this.selectors.products_wrapper), $productsWrapper = $productsWrappers[$productsWrappers.length - 1]; if ($productsWrapper.closest('.search.results')) { $productsWrapper = $productsWrapper.closest('.search.results'); } return $productsWrapper; }, scrollUpEvent() { const productList = this.qs(this.selectors.products_wrapper), topNavBlock = this.qs(this.selectors.top_nav); if (this.scrollUp && productList) { const top = this.scrollUp === 1 ? (topNavBlock ? topNavBlock.offsetTop : productList.offsetTop) : 0; window.scrollTo({ top: top, behavior: 'smooth' }) } }, moveTopFiltersToSidebar() { if (!this.qs(this.selectors_top_filters.sidebarList)) { const blockClass = this.qs(this.selectors_top_filters.layeredFilter) ? this.selectors_top_filters.layeredFilter : this.selectors_top_filters.blockFilter, $element = document.querySelector(this.selectors.topNav + ' ' + blockClass); if ($element) { const $sidebar = this.qs(this.selectors_top_filters.sidebar), filterOptions = $element.querySelectorAll('.filter-option'); filterOptions.forEach(filter => { const el = filter.cloneNode(true), input = el.querySelector('[type="radio"], [type="checkbox"]'); if (input) { const name = input.getAttribute('name'); el.classList.add('from-top'); if (!$sidebar.querySelectorAll('[name="'+ name +'"]').length) { $sidebar.querySelector('#layered-filter-block-content').append(el); } } }); } return; } }, /** * @public * @returns {void} */ removeTopFiltersFromSidebar() { const $sidebar = this.qs(this.selectors_top_filters.sidebar); if ($sidebar) { $sidebar.querySelectorAll('.from-top').forEach(filter => { filter.remove(); }); } }, qs(selector) { return document.querySelector(selector); }, qsa(selector) { return document.querySelectorAll(selector); }, stopEvents(e) { e.stopPropagation(); e.preventDefault(); }, serializeForm(form) { const data = new FormData(form) let array = []; for (let [key, value] of data) { array.push({ name: key, value: value }); } return array; }, excludingElement(elements, excluded) { let clearing = [], excludedSelector = this.qs(excluded); elements.forEach(element => { if (element !== excludedSelector) { clearing.push(element); } }); return clearing; }, /** * @public * @param {String} text * @return {String} */ escapeHtml(text) { var map = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''' }; return text.replace(/[&<>"']/g, (m) => { return map[m]; }); }, /** * @public * @param {String} link * @param {Boolean} [clearFilter] * @return {void} */ apply(link, clearFilter) { let linkParam; try { this.response = null; this.options.isAjax = true; linkParam = clearFilter ? link : null; link = this.element?.closest('.price-ranges') && link.includes('?') ? link + '&price-ranges=1' : link; if (!this.options.collectFilters && this.options.isAjax === true) { this.prepareTriggerAjax(this.element, linkParam, clearFilter); } else { // eslint-disable-next-line no-lonely-if if (this.options.collectFilters === 1) { this.prepareTriggerAjax(this.element, linkParam); } else { window.location = link; } } } catch (e) { console.error(e); window.location = link; } }, fixDubbleValue(link) { let input = link.closest('div').querySelector('input'); if (this.qsa('*[value="'+input.value+'"][name="'+input.getAttribute('name')+'"]').length > 1) { this.qsa('*[value="'+input.value+'"][name="'+input.getAttribute('name')+'"]').forEach(filter => { if (filter !== input) { if (filter.getAttribute('type') === 'radio') { filter.closest('.am-filter').querySelectorAll('input').forEach(option => { option.checked = false; }); } else { filter.checked = false; } } }); } if (input.getAttribute('type') !== 'radio' && !input.checked && !this.submitByClick) { let value = input.getAttribute('value'), name = input.getAttribute('name').replace('amshopby[',''); name = name.replace('][]', ''); let removeItem = this.qs('.amshopby-remove-item[data-container="'+ name +'"][data-value="'+ value +'"]'); if (removeItem) { removeItem.remove(); } } }, setSwatchToProducts(swatchId, attributeID) { setTimeout(() => { const productList = document.getElementById('amasty-shopby-product-list'); if (productList) { const swatches = productList.querySelectorAll('[name="super_attribute['+ attributeID +']"][value="' + swatchId + '"]'), event = new Event('change'); swatches.forEach(swatch => { if (!swatch.checked) { swatch.dispatchEvent(event); } }); } }, 1500); }, setSwatchMassToProducts(swatchIds, attributeID) { const swatches = swatchIds.split(','); this.massSwatchSet(swatches, attributeID); window.onload = () => { setTimeout(() => { this.massSwatchSet(swatches, attributeID); }, 1000); } }, massSwatchSet(swatches, attributeID) { swatches.map(swatch => { this.setSwatchToProducts(swatch, attributeID); }); }, insertAfter(newNode, existingNode) { existingNode.parentNode.insertBefore(newNode, existingNode.nextSibling); }, removeInputByName(input) { let name = input.getAttribute('name').replace('amshopby[',''); name = name.replace('][]', ''); this.qs('.amshopby-remove-item[data-container="'+ name +'"]').remove(); }, eventListeners: { ['@amshopby-submit-filters.window'](event) { let self = this, data = event.detail.data, clearUrl = self.options.clearUrl, isSorting = event.detail.isSorting, pushState = !self.submitByClick; if (typeof data.clearUrl !== 'undefined') { clearUrl = data.clearUrl; delete data.clearUrl; } if (self.prevCall) { this.controller.abort(); this.signal = null; this.controller = new AbortController(); this.signal = this.controller.signal; } let dataAndUrl = data.slice(0); dataAndUrl.push(clearUrl ? clearUrl : self.clearUrl); const cacheKey = JSON.stringify(dataAndUrl); self.cacheKey = cacheKey; if (self.cached[cacheKey]) { let response = self.cached[cacheKey]; if (pushState || isSorting) { if (response.newClearUrl && response.newClearUrl.indexOf('?p=') == -1 && response.newClearUrl.indexOf('&p=') == -1 ) { self.options.clearUrl = response.newClearUrl; } window.history.pushState({url: response.url}, '', response.url); self.reloadHtml(response); } else { window.dispatchEvent(new CustomEvent('amApplyButtonData', { detail: { count: response.productsCount, disabled: false } })); } return; } self.prevCall = self.callAjax(clearUrl, data, pushState, cacheKey, isSorting); }, ['@amSliderValuesUpdated.window'](event) { this.apply(event.detail.searchParams); }, ['@amApplyButton.window'](event) { let valid = true, element = event.detail.element, navigationSelector = event.detail.navigationSelector, navigation = element.closest(navigationSelector), cachedValues = this.cached[this.cacheKey], cachedKey = this.response, response = cachedValues ? cachedValues : cachedKey; if (!response) { return } if (response.isDisplayModePage || (!this.isAjaxSettingEnabled && this.submitByClick)) { window.location.href = response.url; return; } if (!response && this.startAjax) { this.showButtonClick = true; window.dispatchEvent(new CustomEvent('amApplyButtonData', { detail: { count: '', disabled: false } })); } if (valid && response) { window.dispatchEvent(new CustomEvent('amApplyButtonData', { detail: { count: '', disabled: false } })); window.history.pushState({url: response.url}, '', response.url); this.reloadHtml(response); this.response = false; this.showButtonClick = false; } window.onpopstate = function () { location.reload(); }; }, ['@amRemoveElement.window'](event) { const link = event.detail.element; if (this.isAjax) { const currentFilterItem = link.closest('.amshopby-remove-item'), filter = { attribute: currentFilterItem.getAttribute('data-container'), value: this.escapeHtml(currentFilterItem.getAttribute('data-value')) }; this.currentFilters.push(filter); this.element = undefined; try { window.dispatchEvent( new CustomEvent( 'amSetButtonPosition', { detail: { element: link } } ) ); this.setDefault(filter.attribute, filter.value); if (!this.submitByClick) { link.closest('.amshopby-remove-item').remove(); } this.prepareTriggerAjax(null, null, true); } catch (e) { console.error(e) window.location = link.getAttribute('href'); } } else { window.location.href = link.getAttribute('href'); } }, ['@amSwatchClick.window'](event) { const link = event.detail.element; if (this.isAjax) { const href = link.getAttribute('href'), input = link.closest('div').querySelector('input'); this.element = link; input.checked = !input.checked; if (input.getAttribute('type') === 'radio') { let ring = link.closest('.am-shopby-form').querySelector('.ring'); if (ring) { this.setSwatchBorder(ring); if (!this.submitByClick) { this.removeInputByName(input); } if (input.checked) { this.setSwatchBorder(link); } } else { this.setSwatchBorder(link); } } else { this.setSwatchBorder(link); } if (this.isFinderAndCategory(link)) { location.href = href; return; } setTimeout(() => { this.fixDubbleValue(link); window.dispatchEvent( new CustomEvent( 'amSetButtonPosition', { detail: { element: link } } ) ); this.apply(href); }, 10); } else { window.location.href = link.getAttribute('href'); } }, ['@amFilterElementClick.window'](event) { let filterElement = event.detail.element; if (!filterElement.classList.contains('item')) { filterElement = filterElement.closest('div'); } const checkbox = filterElement.querySelector('input'), checkboxLink = filterElement.querySelector('a'), href = checkboxLink.getAttribute('href'); if (!this.submitByClick && checkbox.checked && checkbox.getAttribute('type') === 'radio') { this.removeInputByName(checkbox); } this.element = checkboxLink; setTimeout(() => { this.fixDubbleValue(checkboxLink); window.dispatchEvent( new CustomEvent( 'amSetButtonPosition', { detail: { element: checkboxLink } } ) ); if (this.isFinderAndCategory(checkbox)) { location.href = href; return; } this.apply(href); }, 10); }, ['@googleTag.window'](e) { } } } }
Laptop sleeves - 14 inch | Vandaag besteld, Morgen in huis (2024)

FAQs

What size sleeve do I need for my laptop? ›

Measure diagonal

This size does not include the 'bezel' (the casing that surrounds the screen itself) which can often add an additional inch onto the size. So, you need to measure your laptop diagonally from edge to edge. Then you know your laptop's true inch size, which will help you choose your KNOMO bag or sleeve.

Is a laptop sleeve enough? ›

Before you buy a laptop sleeve, consider if you actually need one. Most backpacks, messenger bags, tote bags, and briefcases already have a protective slot for your laptop. If you carry your laptop outside of a bag, a laptop sleeve might be what you need—but if you're carrying a backpack anyway, it might not.

Do laptop sleeves protect laptops? ›

Sleeves provide protection from everyday hazards. Laptop sleeves shield your device from common threats like minor impacts, scratches, and dust. They are excellent ways to protect your portable computer when it's carried in a larger bag or backpack. This preventive measure can save you from expensive repair bills.

How tight should a laptop sleeve be? ›

You obviously want to avoid something too small, but you should also skip over the sleeves that are too large for your device. The idea is for your laptop to have a snug fit that is loose enough to fit the laptop while being tight enough that your device isn't sliding around in the sleeve.

What size is a 14 inch laptop? ›

How do you find out the dimensions of your laptop?
Inch sizeCM LxH
14 inch33,5 cm x 24,7 cm
15 en 15.4 inch36 cm x 27 cm
15.5 inch37 cm x 24,9 cm
15.6 inch37,4 cm x 24,5 cm
8 more rows

Does a 14 inch laptop fit in a 14 inch case? ›

If it is 14" wide, it WILL NOT fit in the 14" case. If it is 14" diagonal, it should but do measure the width as the bag is only 13.5" wide.

What is the best material for a laptop sleeve? ›

Let's examine the most common materials used to craft PC or MacBook sleeves and understand their unique characteristics. Nylon sleeves are popular due to their versatility. They are lightweight, durable, and water-resistant, providing excellent protection from minor impacts, moisture, and dust.

Do I really need a laptop bag? ›

Protection. Both a laptop bag and laptop sleeve provide an additional layer of protection when compared to just carrying your laptop as is. If you don't carry your laptop with you too often or if you are mostly indoors, then a slim laptop sleeve would provide a snug fit to minimise the risk of any marks or scratches.

How can I protect my laptop without a laptop sleeve? ›

Use a Well-Padded Laptop Bag with a Dedicated Compartment

Also, don't forget to check the bottom for padding. It's frequently overlooked, but a crucial consideration. You also need to make sure the backpack or bag has a compartment large enough for your laptop but not so large that your laptop can move around too much.

What should I look for in a laptop sleeve? ›

Most good quality laptop cases should provide super-soft padding or allocated pockets that wrap around your laptop snugly. That is why it's important to find a laptop case that is suitable for your size of device, so that it's not excessively moving around your bag.

What is the difference between laptop sleeve and laptop cover? ›

Laptop sleeves are slim, lightweight cases designed to protect your laptop from scratches and minor bumps, while laptop bags offer more space for accessories and are typically more durable.

What is the best way to protect laptop? ›

Get a reliable bag to carry your laptop.

A good laptop bag will have padded compartments specifically designed for a laptop of the right size. You don't want your laptop jostling around in a compartment that is too big for it. You can choose from a number of styles, including backpacks, messenger bags, and briefcases.

What size of laptop sleeve do I need? ›

The most effective way to determine this is by physically measuring the laptop screen. This measurement, taken diagonally from one corner of the screen to the opposite corner, should cover the screen area only, excluding the bezels.

Should I buy laptop sleeve? ›

In general, laptops encounter scratches and paint peeling for a period of time after use, while a laptop sleeve greatly avoids them. What laptop sleeve should I choose before making the purchase? The great protection makes a laptop sleeve, so make sure you are choosing one protective enough to safeguard a device.

Is it okay to have a bigger laptop sleeve? ›

If you need to carry additional accessories, a slightly bigger bag may be a better option. However, if you are traveling light, a snug fit may be more convenient. It's crucial to choose a bag that provides adequate protection to your laptop while also being comfortable to carry.

How to check laptop sleeve size? ›

This size doesn't include the casing that surrounds the screen itself, which can often add an additional inch to the size. So, you need to measure your laptop diagonally from edge to edge to get your laptop's true measurement in inches and be able to choose the right travel bag.

Will a 16 inch laptop fit in a 15.6 inch sleeve? ›

While it's possible for a 15.6-inch laptop bag to fit a 16-inch laptop, it depends heavily on specific designs and dimensions. Carefully considering both the bag and the laptop's measurements is crucial to ensure a proper and comfortable fit.

Will a 13 inch sleeve fit a 13.3 inch laptop? ›

yes,it can fit.

How do I know what size arm sleeve to get? ›

To get a compression arm sleeve that fits you perfectly, you need to start by measuring your relaxed bicep. You need to measure the center of your relaxed bicep and purchase a compression sleeve that is about half an inch to one inch smaller than the measured area.

References

Top Articles
Latest Posts
Article information

Author: Stevie Stamm

Last Updated:

Views: 6195

Rating: 5 / 5 (60 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Stevie Stamm

Birthday: 1996-06-22

Address: Apt. 419 4200 Sipes Estate, East Delmerview, WY 05617

Phone: +342332224300

Job: Future Advertising Analyst

Hobby: Leather crafting, Puzzles, Leather crafting, scrapbook, Urban exploration, Cabaret, Skateboarding

Introduction: My name is Stevie Stamm, I am a colorful, sparkling, splendid, vast, open, hilarious, tender person who loves writing and wants to share my knowledge and understanding with you.