- CreativeCloud ※Creative Cloudでも可
- Adobe
- CreateNow ※Create Nowでも可
- CreativeStation
- CC
- CC-POD
- MAGIC MASTER
- Adobe Creative Cloud
- Adobe TV
- Photoshop Magazine
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
| -- | |
| \紹介されました/ | |
| http://snook.ca/archives/conferences/css-takes-over-the-world | |
| http://tv.adobe.com/watch/max-2011-envision/css-takes-over-the-world/ | |
| -- | |
| CSS PANIC - a game, noJS, only CSS and HTML - | |
| JavaScriptを使わない。 | |
| CSSプログラミング第二弾「CSS PANIC」 |
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
| Will become a heading | |
| ============== | |
| Will become a sub heading | |
| -------------- | |
| *This will be Italic* | |
| **This will be Bold** |
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
| body { background-color: #DDDDDD; font: 30px sans-serif; } |
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
| ## 説明 | |
| LINEがインストールされている端末のみ | |
| * line:// で LINEを起動 | |
| * line://msg/text/メッセージ で LINEを起動してユーザーを選ぶと *メッセージ* が既に入力されている | |
| ## 参考 |
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
| var _layers = []; | |
| var lang = {}; | |
| $.writeln("-------------------------------"); | |
| main(); | |
| function main(){ | |
| var document = activeDocument; | |
| var layers = document.layers; | |
| loadCSV(function(lang){ |
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
| <script id="testscript" src="test.js"> | |
| <script id="testscript2" src="test2.js"> |
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
| /* | |
| * 押したらLEDつきっぱなし | |
| * 再度押したらLED消える。 | |
| */ | |
| // LEDが接続されているピン | |
| const int LED = 13; | |
| // ボタンが接続されているピン | |
| const int BUTTON = 7; |
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
| var timer, | |
| count_rule = 0, | |
| count_maxrule = 4600, | |
| sheet = document.styleSheets[0]; | |
| function addCSSRule(sheet, selector, rules, index) { | |
| if(sheet.insertRule) { | |
| sheet.insertRule(selector + "{" + rules + "}", index); | |
| } | |
| else { |
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
| <img src="image.jpg" onerror="this.style.display='none';" /> |
OlderNewer