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
visibility: hiddenはレイアウトへの影響を残す。 具体的には次の3つ。 | |
・要素の表示領域を残す | |
「要素が生成するボックスのみ残り、要素自体は無くなる」と考えると分かりやすい | |
・要素の表示域が空白になる。 | |
クリックなどのマウスイベントを受け付けなくなる。 | |
・子孫要素を表示可 | |
visibility: visibleを指定することで、指定の子孫要素以下を可視化できる。 | |
他の要素への影響を残す | |
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
################### | |
# Myself | |
################### | |
.gitignore | |
################### | |
# WordPress | |
################### | |
**/wp-content/uploads/ |
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
/* remのrootはhtml */ | |
html { | |
font-size: 62.5% | |
} |
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
//現在の日付を取得する,第2引数を省略するとtime()が初期値 | |
$date = date("Y/m/d H:i:s"); | |
Y 2016 y 16 | |
m 09 n 9 | |
d 07 j 7 | |
I Monday D Mon w 1(曜日番号,0~6) | |
H 14 h 02 (hour) | |
i 18 (minutes) | |
s 07 (second) |
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
/** | |
* create datebase utf-8 | |
* 文字コードを指定してDB作成 | |
*/ | |
CREATE DATABASE dbname CHARACTER SET utf8; |
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').on({'mousewheel': function(e) { return false; }}); | |
$('body').off('mousewheel'); |
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
mysql -u root -p |
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
//DBの確認 | |
SHOW DATABASES; | |
//Tableの確認 | |
SHOW TABLES; | |
//使うDBを変える | |
USE dbname; |
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
// そもそもパスワードがrootじゃなくてadminかも | |
mysql -u admin -p |
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
.sample { | |
background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8)), linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8)); | |
background-repeat: no-repeat, no-repeat; | |
background-position: center top, center bottom; | |
-webkit-background-size: 100% 100px; | |
background-size: 100% 100px; | |
} |