Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
2/11
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
Flashwheel Roller Skates Black Mesh Leather Breathable Unisex
2/11

Flashwheel Roller Skates Black Mesh Leather Breathable Unisex

$129.99
$129.99
Save $0.00
Style
Please select a style
Size
Please select a size
Quantity
Over $49.99 Free Shipping
30-day Zero-risk Return
100% Customer Satisfaction
Secure Payments
Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.
roller skate women
  • ❤Skate wheels: Roller skates are equipped with ABEC-7 bearings. The ecological leather on the upper is perfectly suitable for various occasions. It is no longer necessary to change the skates for changing venues. The roller skates are equipped with sturdy four-wheel skates, made of durable molded material, with a hardness of 80, and the wheels have a certain shock-proof function, which can provide safe and reliable roller skating performance.
  • ❤Skate design: These skates are adjusted by our professionals to ensure the best safety, and this designed shoelace can provide the greatest degree of protection to ensure the comfort and safety of the feet. The perfect fit and high degree of comfort can make your feet feel comfortable during use. There is a support column in the front, which is very suitable for beginners. It can better maintain control and fast braking. This structure ensures that the support will not be damaged.
  • ❤ Skate crowd: Our classic double-row skates are safer and more stable than inline skates. They are very suitable for beginners and men and women who want to learn roller skating easily. Buy a pair and you can enjoy roller skating.
  • ❤ Roller skates as a gift: Colorful roller skates are the perfect gift for kids, boys, girls and boyfriends, girlfriends or family. It is also ideal for indoor and outdoor skating.

roller skate women

Feature:

  • Boots material: artificial leather
  • Wheel body material: 58 x 38 MM PU (polyurethane), 80 hardness
  • Bearing: ABEC-7 chrome steel bearing
  • Plate base: Steel
  • Occasion: Suitable for indoor and outdoor
  • Gender: Unisex
Size
US Men US Women E.U. Root Length
(cm)
11C 11C 28 17
12C 12C 29 18
12.5C 12.5C 30 18.5
13C 13C 31 19
1.0 2.5 32 20
1.5 3.0 33 20.5
2.5 4.0 34 21.5
3.5 5.0 35 22.5
4.0 5.5 36 23
4.5 6.0 37 23.5
5.5 7.0 38 24
6.5 8.0 39 24.5
7.0 8.5 40 25
8.0 9.5 41 26
8.5 10.0 42 26.5
9.5 11.0 43 27.5
10.0 11.5 44 28
11.0 12.5 45 29
12.0 13.5 46 30
12.5 14.0 47 30.5
13.5 15.0 48 31.5
14.5 16.0 49 32.5

【Maintenance of roller skates】

  • Frequently take out the inner cover of the shoe and wash it to prevent odor and prevent the growth of bacteria.
  • The wheels on the left and right sides are frequently changed to make the wheels of inline skates more durable.
  • Avoid sliding on rough roads, which can prolong the service life of wheels and bearings.
  • Do not replace wheels or bearings individually, as this will reduce the stability of sliding.
  • If the bearing has been used for a long time and it is not smooth when sliding, you can remove the bearing and soak it in the "degreasing oil" for about half an hour to clean off the impurities in the bearing, and then spray it with engine oil or bearing oil. This can extend the life of the bearing.
  • When the product is not in use, it should be stored in a dry place without direct sunlight. This has a certain effect on the rust of the accessories and the aging of the product.

【Suitable for beginners】

These roller skates use controllable high-top shoes to ensure optimal safety, and high-quality shoelaces provide maximum protection to ensure comfortable and safe feet.

The perfect fit and a high degree of comfort can make your feet feel comfortable during use.

There is a support column in the front, which is very suitable for beginners.

It can better maintain control and brake quickly. This structure ensures that the support will not be damaged.

roller skate women