Bracketsに導入してみた拡張機能メモ。
- brackets-beautify
- Code Folding - コードの折りたたみ機能
- Emmet
- jsbeautifier
- Markdown Preview - マークダウンプレビュー機能
- Ruby Blue
- zipをダウンロード
- 適当なフォルダへ入れる(例:C:\Users\ユーザー名\nodist)
- 環境変数を設定
- PATH=...\nodist\bin (nodist.cmd があるパス)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /d %~dp0 | |
| :: 現在のディレクトリに移動 | |
| sass --style expanded --watch style.scss:style.css --cache-location sass/.sass-cache | |
| :: 【--style】CSSのフォーマット | |
| :: 【--watch】scssファイルの自動監視 | |
| :: 【sass:html/css】sassファイルの場所:cssファイルの書き出し先 | |
| :: 【--cache-location】キャッシュファイルの保存先 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .icon-fallback-img .icon-hamburger { | |
| width: 1em; | |
| height: 1em; | |
| background: url("fonts/png/hamburger.png") no-repeat; | |
| } | |
| /* A-Grade */ | |
| .supports-fontface .icon-fallback-img .icon-hamburger:before { | |
| font-family: icomoon; | |
| content: "\e601"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Example: | |
| * var items = document.getElementById("dropdown").children; | |
| * var dropdown = new Dropdown(items); | |
| */ | |
| (function (window) { | |
| "use strict"; | |
| class Dropdown { |
OlderNewer