Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
nishinoshake / hideDotFiles.command
Last active May 29, 2016 04:51
ドットファイルを表示/非表示
#!/bin/sh
defaults delete com.apple.finder AppleShowAllFiles
killall Finder
@nishinoshake
nishinoshake / ie.html
Last active May 29, 2016 04:51
meta系のタグ
<!--[if lte IE8]>
<script type="text/javascript" src="/jquery/1.11.1/jquery.min.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script type="text/javascript" src="/jquery/2.1.1/jquery.min.js"></script>
<!--<![endif]-->
@nishinoshake
nishinoshake / custom_data.html
Last active May 29, 2016 04:46
カスタムデータ属性にアクセス
<p id="blog" data-author="Taro" data-create-date="2013-04-10">2013-04-10</p>
@nishinoshake
nishinoshake / comment.css
Last active May 29, 2016 05:18
コメント系
/* */
/*
------------------------------------------------ */
/* -----------------------------------------------------
------------------------------------------------------- */
@nishinoshake
nishinoshake / shorthand.css
Last active May 29, 2016 04:45
CSSのショートハンド
.short {
/* margin padding border */
/* 上 右 下 左 */
margin: 10px 5px 3px 2px;
/* 上 左右 下 */
margin: 10px 5px 2px;
/* 上下 左右 */
margin: 10px 5px;
/* まとめて */
margin: 10px;
@nishinoshake
nishinoshake / font_family.css
Last active August 13, 2016 03:34
フォント系のCSS
.ff {
font-family: "Helvetica Neue", "游ゴシック Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}
@nishinoshake
nishinoshake / animation.css
Last active August 10, 2016 06:22
アニメーションのCSS
.transform {
/* 原点 */
transform-origin: 50% 50% 0 | left top | 10% 20% 30%;
tranform: rotate(45deg);
transform: scale(2);
transform: skew(45deg);
transform: translate(10px, 10px);
}
.transition {
/* property duration timing-function delay */
@nishinoshake
nishinoshake / tap_effect.css
Created December 5, 2015 11:42
タップのエフェクトを消す
.tap{
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@nishinoshake
nishinoshake / appearance.css
Created December 5, 2015 11:43
ブラウザのデフォルトをオフにする
.form {
appearance:none;
}
@nishinoshake
nishinoshake / viewport.html
Created December 5, 2015 11:45
viewportのタグ
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">