Flying Eagle F110 Inline Skates
Flying Eagle F110 Inline Skates
Flying Eagle F110 Inline Skates
Flying Eagle F110 Inline Skates
Flying Eagle F110 Inline Skates
Flying Eagle F110 Inline Skates
Flying Eagle F110 Inline Skates
Flying Eagle F110 Inline Skates

Flying Eagle F110 Inline Skates

$299.00
$329.00
-$30.00
Size-US 4.5 / EU 36 / 218-228MM
Please select a size
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments

(The new and old models will be randomly arranged for delivery to you.If you have any requirements for new or old models, please contact our customer service at support@flyingeagleskate.com)

 

Sizing Tips:
    These skates are true to size. Zero break-ins are required. If the skates do not come in half sizes or doubt your true size, then round your size up.
    Generally, choose the size of your own skates according to the number of sports shoes. If your instep is relatively high or your feet are relatively wide, it is recommended that you choose a larger size of skates

 

Size Selection:
Size / Sole Length (mm) / Foot Length (mm)

36 / 226 / 218-228
37 / 23
3 / 227-235
38 / 240 / 23
4-242
39 / 246 / 240-248
40 / 253 / 247-255
41 / 25
9 / 253-261
42 / 266 / 260-268
43 / 273 / 267-275
44 / 280 / 274-282
45 / 287 / 281-289
46 / 294 / 288-296


ITEM NO.:F110
Color:BLACK
SIZE:36,37,38,39,40,41,42,43,44#45#,46#
BEARING:FLYING EAGLE PRO BEARINGS (ROLLING WITH WINGS)
FRAME:3*110MM Supersonic is designed based on extruded aluminum technology and cnc cutting.
WHEELS:110MM 88A SPEED WHEELS FOR THE  PERFECT ROLL.
PACKING:COLOR BOX 6PRS/CTN

High end 3×110 skates, the F110 by Flying Eagle is one of the finest setups on the market.

Combining the same skate technique as a 4x80mm skate you can skate faster and smoother than ever before.

Upper shoes: strengthen the shoe shell, the elastic liner is suitable for different foot types

Base: Supersonic supersonic big three-wheel FSK professional bracket 249mm length, 2+1 arrangement design increases controllability

Wheels: Ultrasonic speed pulley 88A 110mm


This combo includes:

- Comfortable, hard shell, reactive exterior boot.
- Liner: Removable, neoprane toe, high lacing, anti-shock and washable.
- Milimetrick, high resistant buckles

- Easy Entry Sistem which facilitates putting the skates on as well as long lasting wear.

Supersonic freeskate Frame

- Robust internal reinforcement arches and customizable placement
- Designed in Spain

Wheel
- 110mm reinforced core 88A

Bearings
- ABEC9 Pro

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.