从右到左支持Twitter Bootstrap 3


Answers:






6

在每个版本的引导程序中,您都可以手动执行

  1. 将rtl方向设定为您的身体
  2. 在bootstrap.css文件中,查找“ .col-sm-9 {float:left}”表达式,将其更改为float:right

这可以为rtl做大多数您想要的事情


1
这非常有帮助
Nick M



3

如果您希望站点上的Bootstrap 3支持RTL和LTR,则可以“即时”修改CSS规则,此处附带一个函数,它修改了Bootstrap 3的主要类,例如col-(xs | sm | md | lg )-(1-12),col-(xs | sm | md | lg)-推-(1-12),col-(xs | sm | md | lg)-pull-(1-12),col- (xs | sm | md | lg)-offset-(1-12),还有很多要修改的类,但我只需要那些。

所有你需要做的就是调用函数layout.setDirection('rtl')或者layout.setDirection('ltr')它将改变自举3网格系统的CSS规则。

应该适用于所有浏览器(IE> = 9)。

        var layout = {};
        layout.setDirection = function (direction) {
            layout.rtl = (direction === 'rtl');
            document.getElementsByTagName("html")[0].style.direction = direction;
            var styleSheets = document.styleSheets;
            var modifyRule = function (rule) {
                if (rule.style.getPropertyValue(layout.rtl ? 'left' : 'right') && rule.selectorText.match(/\.col-(xs|sm|md|lg)-push-\d\d*/)) {
                    rule.style.setProperty((layout.rtl ? 'right' : 'left'), rule.style.getPropertyValue((layout.rtl ? 'left' : 'right')));
                    rule.style.removeProperty((layout.rtl ? 'left' : 'right'));
                }
                if (rule.style.getPropertyValue(layout.rtl ? 'right' : 'left') && rule.selectorText.match(/\.col-(xs|sm|md|lg)-pull-\d\d*/)) {
                    rule.style.setProperty((layout.rtl ? 'left' : 'right'), rule.style.getPropertyValue((layout.rtl ? 'right' : 'left')));
                    rule.style.removeProperty((layout.rtl ? 'right' : 'left'));
                }
                if (rule.style.getPropertyValue(layout.rtl ? 'margin-left' : 'margin-right') && rule.selectorText.match(/\.col-(xs|sm|md|lg)-offset-\d\d*/)) {
                    rule.style.setProperty((layout.rtl ? 'margin-right' : 'margin-left'), rule.style.getPropertyValue((layout.rtl ? 'margin-left' : 'margin-right')));
                    rule.style.removeProperty((layout.rtl ? 'margin-left' : 'margin-right'));
                }
                if (rule.style.getPropertyValue('float') && rule.selectorText.match(/\.col-(xs|sm|md|lg)-\d\d*/)) {
                    rule.style.setProperty('float', (layout.rtl ? 'right' : 'left'));
                }
            };
            try {
                for (var i = 0; i < styleSheets.length; i++) {
                    var rules = styleSheets[i].cssRules || styleSheets[i].rules;
                    if (rules) {
                        for (var j = 0; j < rules.length; j++) {
                            if (rules[j].type === 4) {
                                var mediaRules = rules[j].cssRules || rules[j].rules
                                for (var y = 0; y < mediaRules.length; y++) {
                                    modifyRule(mediaRules[y]);
                                }
                            }
                            if (rules[j].type === 1) {
                                modifyRule(rules[j]);
                            }

                        }
                    }
                }
            } catch (e) {
                // Firefox might throw a SecurityError exception but it will work
                if (e.name !== 'SecurityError') {
                    throw e;
                }
            }
        }


0

我们宣布AryaBootstrap

最新版本基于引导程序4.3.1

AryaBootstrap是具有双重布局对齐支持的引导程序,用于LTR和RTL网页设计。

在HTML中添加“ dir”,这是您唯一需要执行的操作。

在以下网址查看AryaBootstrap网站:http ://abs.aryavandidad.com/

GitHub上的AryaBootstrap:https//github.com/mRizvandi/AryaBootstrap

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.