安田 学

Results 54 issues of 安田 学

URLの指定があるソーシャルボタンには変数の指定ができるようにする。

enhancement

Windowsの游ゴシック・游明朝で細く表示されるのは`font-weight: normal;`もしくは`font-weight: 400;`の扱いが違うらしい。 MacではMedium(`500`)がデフォルトでWindowsではRegular(`400`)がデフォルト。Win 8.1についてはMediumすらインストールされていない。 - https://app.codegrid.net/entry/2016-choosing-fonts-3 - https://github.com/fumikito/takahashifumiki.com/blob/master/styles/sass/_settings.scss - http://qiita.com/llsmrsll/items/f019b8daadf798066001 `font-weidth:500;`が問題になるのはどのブラウザまでか? `"游明朝体 ミディアム"`のような指定は有効なのか?

question

`(val / 2)`みたいな四則演算をするときに`half(val)`みたいにしたい。 - `quarter()` 1/4 - `half()` 1/2 - `double()` \* 2 - `quadruple()` \* 4 小数点の桁数も変更できるようにしたい。 http://terkel.jp/archives/2012/12/decimal-digits-and-rounding-sass-function/ 第一引数に値、第二引数に小数点の桁数、第三引数に丸め方。小数点は6桁、丸め方は四捨五入(round)をデフォルトにする。 ``` scss half($number, $digits: 6, $function: round) ```

enhancement
question

http://www.tam-tam.co.jp/tipsnote/javascript/post10200.html importとexportでモジュール管理ができるように。

enhancement