"إذا أراد العامل أن يؤدي عمله بشكل جيد، فعليه أولاً أن يشحذ أدواته." - كونفوشيوس، "مختارات كونفوشيوس. لو لينجونج"
الصفحة الأمامية > برمجة > How to Create a Vertically Oriented Range Slider: A Guide to Compatibility and Modern Techniques?

How to Create a Vertically Oriented Range Slider: A Guide to Compatibility and Modern Techniques?

تم النشر بتاريخ 2024-11-08
تصفح:815

How to Create a Vertically Oriented Range Slider: A Guide to Compatibility and Modern Techniques?

Vertical Range Input Slider: Orientation and Compatibility

In the world of web development, presenting sliders vertically can enhance user experience and accommodate specific layouts. This article explores techniques for achieving vertical orientation with an HTML5 <input type="range"> slider, considering browser compatibility and modern implementation.

Initially, it was believed that adjusting the height and width of the slider element would trigger automatic vertical orientation in supported browsers. However, testing revealed that this method is no longer reliable, leaving developers seeking alternative solutions.

Modern Approach

For current versions of Chrome and Firefox, the most efficient solution involves utilizing the writing-mode and direction properties:

input[type=range] {
    writing-mode: vertical-lr;
    direction: rtl;
}

Setting writing-mode to vertical-lr (or vertical-rl) flips the writing direction, while direction: rtl (right-to-left) ensures that sliding upwards reduces the value, adhering to standard conventions.

Legacy Browser Support

For older versions of Chrome and other Chromium-based browsers:

input[type=range] {
    appearance: slider-vertical;
    width: 16px;
}

Applying appearance: slider-vertical forces the vertical orientation, and setting a fixed width aligns with the default width used in modern browsers.

Firefox Compatibility

For older versions of Firefox:

html {
    orient: vertical;
}

Adding the orient attribute to the <html> element instigates the vertical orientation for all sliders on the page.

In summary, these techniques provide reliable methods for displaying <input type="range"> sliders vertically, ensuring optimal user experience and visual appeal across a wide range of browsers.

أحدث البرنامج التعليمي أكثر>

تنصل: جميع الموارد المقدمة هي جزئيًا من الإنترنت. إذا كان هناك أي انتهاك لحقوق الطبع والنشر الخاصة بك أو الحقوق والمصالح الأخرى، فيرجى توضيح الأسباب التفصيلية وتقديم دليل على حقوق الطبع والنشر أو الحقوق والمصالح ثم إرسالها إلى البريد الإلكتروني: [email protected]. سوف نتعامل مع الأمر لك في أقرب وقت ممكن.

Copyright© 2022 湘ICP备2022001581号-3