Bootstrapソースコードの旅-mixins解読(2)

43461 ワード

コードの貼り付けがまた始まりました!

forms.less

// Form validation states
//
// Used in forms.less to generate the form validation CSS for warnings, errors,
// and successes.

.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
  // Color the label and help text
  .help-block,
  .control-label,
  .radio,
  .checkbox,
  .radio-inline,
  .checkbox-inline,
  &.radio label,
  &.checkbox label,
  &.radio-inline label,
  &.checkbox-inline label  {
    color: @text-color;
  }
  // Set the border and box shadow on specific inputs to match
  .form-control {
    border-color: @border-color;
    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
    &:focus {
      border-color: darken(@border-color, 10%);
      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
      .box-shadow(@shadow);
    }
  }
  // Set validation states also for addons
  .input-group-addon {
    color: @text-color;
    border-color: @border-color;
    background-color: @background-color;
  }
  // Optional feedback icon
  .form-control-feedback {
    color: @text-color;
  }
}


// Form control focus state
//
// Generate a customized focus state and for any input with the specified color,
// which defaults to the `@input-border-focus` variable.
//
// We highly encourage you to not customize the default value, but instead use
// this to tweak colors on an as-needed basis. This aesthetic change is based on
// WebKit's default styles, but applicable to a wider range of browsers. Its
// usability and accessibility should be taken into account with any change.
//
// Example usage: change the default blue border and shadow to white for better
// contrast against a dark gray background.
.form-control-focus(@color: @input-border-focus) {
  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
  &:focus {
    border-color: @color;
    outline: 0;
    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
  }
}

// Form control sizing
//
// Relative text size, padding, and border-radii changes for form controls. For
// horizontal sizing, wrap controls in the predefined grid classes. `
// element gets special love because it's special, and that's a fact!
.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
  height: @input-height;
  padding: @padding-vertical @padding-horizontal;
  font-size: @font-size;
  line-height: @line-height;
  border-radius: @border-radius;

  select& {
    height: @input-height;
    line-height: @input-height;
  }

  textarea&,
  select[multiple]& {
    height: auto;
  }
}
  • form-control-validationは、フォーム検証ステータスを生成するためのスタイルです.フォームの検証は、successに成功し、errorに失敗し、warningに警告があったことにほかならない.主にフォントの色、枠線の色、背景の色を設定して、検証状態を教えてくれる目的を達成します!
  • form-control-focus、フォーム要素がフォーカスを取得するときのスタイル
  • を生成する
  • input-sizeは、異なるサイズのフォーム要素スタイルをカスタマイズするために入力コントロールのサイズのスタイルを生成します.主に高さ、padding、フォントサイズ、行の高さ、フィレット半径を設定します.

  • gradients.less

    // Gradients
    
    #gradient {
    
      // Horizontal gradient, from left to right
      //
      // Creates two color stops, start and end, by specifying a color and position for each color stop.
      // Color stops are not available in IE9 and below.
      .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
        background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+
        background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12
        background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
        background-repeat: repeat-x;
        filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
      }
    
      // Vertical gradient, from top to bottom
      //
      // Creates two color stops, start and end, by specifying a color and position for each color stop.
      // Color stops are not available in IE9 and below.
      .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
        background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+
        background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12
        background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
        background-repeat: repeat-x;
        filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
      }
    
      .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
        background-repeat: repeat-x;
        background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
        background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12
        background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
      }
      .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
        background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
        background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
        background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
        background-repeat: no-repeat;
        filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
      }
      .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
        background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
        background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
        background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
        background-repeat: no-repeat;
        filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
      }
      .radial(@inner-color: #555; @outer-color: #333) {
        background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
        background-image: radial-gradient(circle, @inner-color, @outer-color);
        background-repeat: no-repeat;
      }
      .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
        background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
        background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
      }
    }

    グラデーション、これは高級すぎて、主に線形グラデーションを使っています.この文章を参考にしてください.https://developer.mozilla.org/zh-CN/docs/Web/CSS/linear-gradientここで一つ選んで言ってください.一番下のものです.striped.これはprogress-barに使われていることがわかります.デフォルトの進捗バーは純色の長いバーであることがわかります.Bootstrapには、シマウマ線スタイルのスクロールバーも用意されています.progress-barにprogress-bar-stripedを加えて実現した.このprogress-bar-stripedクラスは使用されています.stripedクラス定義.progress-barの実現原理を話したいような気がします.まずprogress-barのdom構造を見てみましょう
    <div class="progress"
        <div class="progress-bar" style="width:44%">
        div>
    div>
  • 外層progressはコンテナであり、進捗バーの高さ、フィレット、ボックスシャドウ効果を定義します.
  • 里層progress-barは私たちが見た色のある部分です.どのくらいの進捗がほしいかは、widthを設定すればいいです.

  • では、シマウマ線の効果です.striped実現の原理は何ですか?ここで私自身の理解を話します.グラデーションラインは45度で、左下から右上へ.グラデーションカラーは、不透明度0.15の白の順で、透明度が交互に変わります.実はこのグラデーションは効果が見えません.半透明ではなく透明だからです.本当に効果を見ることができるのは、この要素の背景色background-colorを同時に設定することであり、background-imageをグラデーションとして設定すると、background-colorにフィルタがセットされているように見えます.透明な部分はもちろん背景色、半透明な部分はもちろん少しハイライトされた背景色です.これでシマウマライン効果です.それだけでは、Bootstrapのシマウマの効果が得られず、進捗バー全体が1回グラデーションされるだけです.background-size:40 px 40 pxも同時に設定されています.これでシマウマラインの効果になりました!!!

    grid-framework.less

    // Framework grid generation
    //
    // Used only by Bootstrap to generate the correct number of grid classes given
    // any value of `@grid-columns`.
    
    .make-grid-columns() {
      // Common styles for all sizes of grid columns, widths 1-12
      .col(@index) { // initial
        @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
        .col((@index + 1), @item);
      }
      .col(@index, @list) when (@index =< @grid-columns) { // general; "=
        @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
        .col((@index + 1), ~"@{list}, @{item}");
      }
      .col(@index, @list) when (@index > @grid-columns) { // terminal
        @{list} {
          position: relative;
          // Prevent columns from collapsing when empty
          min-height: 1px;
          // Inner gutter via padding
          padding-left:  ceil((@grid-gutter-width / 2));
          padding-right: floor((@grid-gutter-width / 2));
        }
      }
      .col(1); // kickstart it
    }
    
    .float-grid-columns(@class) {
      .col(@index) { // initial
        @item: ~".col-@{class}-@{index}";
        .col((@index + 1), @item);
      }
      .col(@index, @list) when (@index =< @grid-columns) { // general
        @item: ~".col-@{class}-@{index}";
        .col((@index + 1), ~"@{list}, @{item}");
      }
      .col(@index, @list) when (@index > @grid-columns) { // terminal
        @{list} {
          float: left;
        }
      }
      .col(1); // kickstart it
    }
    
    .calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {
      .col-@{class}-@{index} {
        width: percentage((@index / @grid-columns));
      }
    }
    .calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {
      .col-@{class}-push-@{index} {
        left: percentage((@index / @grid-columns));
      }
    }
    .calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {
      .col-@{class}-push-0 {
        left: auto;
      }
    }
    .calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {
      .col-@{class}-pull-@{index} {
        right: percentage((@index / @grid-columns));
      }
    }
    .calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {
      .col-@{class}-pull-0 {
        right: auto;
      }
    }
    .calc-grid-column(@index, @class, @type) when (@type = offset) {
      .col-@{class}-offset-@{index} {
        margin-left: percentage((@index / @grid-columns));
      }
    }
    
    // Basic looping in LESS
    .loop-grid-columns(@index, @class, @type) when (@index >= 0) {
      .calc-grid-column(@index, @class, @type);
      // next iteration
      .loop-grid-columns((@index - 1), @class, @type);
    }
    
    // Create grid for specific class
    .make-grid(@class) {
      .float-grid-columns(@class);
      .loop-grid-columns(@grid-columns, @class, width);
      .loop-grid-columns(@grid-columns, @class, pull);
      .loop-grid-columns(@grid-columns, @class, push);
      .loop-grid-columns(@grid-columns, @class, offset);
    }

    グリッドレイアウトシステムを作成するには、このコードを研究する必要があると思います.lessのことをたくさん学ぶことができます.このコードは再帰的で、牛の字を使っています.

    grid.less

    // Grid system
    //
    // Generate semantic grid columns with these mixins.
    
    // Centered container element
    .container-fixed(@gutter: @grid-gutter-width) {
      margin-right: auto;
      margin-left: auto;
      padding-left:  floor((@gutter / 2));
      padding-right: ceil((@gutter / 2));
      &:extend(.clearfix all);
    }
    
    // Creates a wrapper for a series of columns
    .make-row(@gutter: @grid-gutter-width) {
      margin-left:  ceil((@gutter / -2));
      margin-right: floor((@gutter / -2));
      &:extend(.clearfix all);
    }
    
    // Generate the extra small columns
    .make-xs-column(@columns; @gutter: @grid-gutter-width) {
      position: relative;
      float: left;
      width: percentage((@columns / @grid-columns));
      min-height: 1px;
      padding-left:  (@gutter / 2);
      padding-right: (@gutter / 2);
    }
    .make-xs-column-offset(@columns) {
      margin-left: percentage((@columns / @grid-columns));
    }
    .make-xs-column-push(@columns) {
      left: percentage((@columns / @grid-columns));
    }
    .make-xs-column-pull(@columns) {
      right: percentage((@columns / @grid-columns));
    }
    
    // Generate the small columns
    .make-sm-column(@columns; @gutter: @grid-gutter-width) {
      position: relative;
      min-height: 1px;
      padding-left:  (@gutter / 2);
      padding-right: (@gutter / 2);
    
      @media (min-width: @screen-sm-min) {
        float: left;
        width: percentage((@columns / @grid-columns));
      }
    }
    .make-sm-column-offset(@columns) {
      @media (min-width: @screen-sm-min) {
        margin-left: percentage((@columns / @grid-columns));
      }
    }
    .make-sm-column-push(@columns) {
      @media (min-width: @screen-sm-min) {
        left: percentage((@columns / @grid-columns));
      }
    }
    .make-sm-column-pull(@columns) {
      @media (min-width: @screen-sm-min) {
        right: percentage((@columns / @grid-columns));
      }
    }
    
    // Generate the medium columns
    .make-md-column(@columns; @gutter: @grid-gutter-width) {
      position: relative;
      min-height: 1px;
      padding-left:  (@gutter / 2);
      padding-right: (@gutter / 2);
    
      @media (min-width: @screen-md-min) {
        float: left;
        width: percentage((@columns / @grid-columns));
      }
    }
    .make-md-column-offset(@columns) {
      @media (min-width: @screen-md-min) {
        margin-left: percentage((@columns / @grid-columns));
      }
    }
    .make-md-column-push(@columns) {
      @media (min-width: @screen-md-min) {
        left: percentage((@columns / @grid-columns));
      }
    }
    .make-md-column-pull(@columns) {
      @media (min-width: @screen-md-min) {
        right: percentage((@columns / @grid-columns));
      }
    }
    
    // Generate the large columns
    .make-lg-column(@columns; @gutter: @grid-gutter-width) {
      position: relative;
      min-height: 1px;
      padding-left:  (@gutter / 2);
      padding-right: (@gutter / 2);
    
      @media (min-width: @screen-lg-min) {
        float: left;
        width: percentage((@columns / @grid-columns));
      }
    }
    .make-lg-column-offset(@columns) {
      @media (min-width: @screen-lg-min) {
        margin-left: percentage((@columns / @grid-columns));
      }
    }
    .make-lg-column-push(@columns) {
      @media (min-width: @screen-lg-min) {
        left: percentage((@columns / @grid-columns));
      }
    }
    .make-lg-column-pull(@columns) {
      @media (min-width: @screen-lg-min) {
        right: percentage((@columns / @grid-columns));
      }
    }