Created
February 22, 2014 12:52
-
-
Save budougumi0617/9154371 to your computer and use it in GitHub Desktop.
HTML5プロフェッショナル認定試験 無料セミナー ref: http://qiita.com/budougumi0617/items/5be51d12411df79efdff
This file contains 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
@keyframes test{ | |
0% { //アニメーションの所要時間の%で指定。 | |
background-color: red; | |
} | |
25% { | |
background-color: yellow; | |
} | |
100% { //0%と100%は必ず指定する必要がある。 | |
background-color: red; | |
} | |
} |
This file contains 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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF8"> | |
<tytle></tytle> |
This file contains 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
<link media="screen and (max-width: 1000px)" ... > | |
<link media="screen and (min-width: 1000px)" ... > |
This file contains 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
CACHE MANIFEST #必ず1行目に記述 | |
styles/default.css #省略すると「CACHE:」 | |
CACHE: #キャッシュさせて使うファイルを指定 | |
styles/default.css | |
NETWORK: | |
* #「CACHE:」で指定されていないファイルは全て | |
SERING: #キャッシュ(モード)の設定 | |
prefer-online #可能ならばネットからファイルを取得。デフォルトはfast(キャッシュを使う) | |
FALLBACK: #取得失敗時の代替ファイルを指定 | |
offline.html |
This file contains 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
<link media="screen かつ幅が600px以上" ...> | |
<style media="screen かつ幅が1024px以下" ... > | |
</style> |
This file contains 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
<!DOCTYPE html> | |
<html lang="ja" manifest="***.appcache"> | |
... | |
</html> |
This file contains 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
@media screen{ | |
... | |
} |
This file contains 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
<ruby> | |
女<rb>満</rb><rb>別</rb> | |
<rt>め</rt><rt>まん</rt><rt>べつ</rt> | |
<rtc> | |
<rt>me</rt><rt>man</rt><rt>betsu</rt> | |
</rtc> | |
</ruby> |
This file contains 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
div#wrapper { //セレクタ | |
width: 900px; //プロパティ: 値; | |
padding: 1em; //プロパティ: 値; | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment