Skip to content

Instantly share code, notes, and snippets.

@Satoh-D
Satoh-D / clearfix.css
Created August 1, 2014 06:35
clearfix(minimal ver.)
/**
* clearfix
*/
.clearfix:before,
.clearfix:after {
content:"";
display: table;
}
.clearfix:after {
@Satoh-D
Satoh-D / viewport
Created June 25, 2014 03:10
viewport設定
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: URL");
@Satoh-D
Satoh-D / my-jquery-boilerplate
Last active August 29, 2015 14:00
jQuery Boilerplateのひな形的な
;(function($, window, document, undefined) {
var pluginName = 'pluginname',
defaults = {};
function Plugin(element, options) {
this.element = element;
this.settings = $.extend({}, defaults, options);
this._defaults = defaults;
this._name = pluginName;
@Satoh-D
Satoh-D / License text
Created April 13, 2014 13:16
プラグインのライセンステキスト
/**
* Plugin Name
*
* Desciption
*
* @category
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @copyright
* @author Daiki Sato <sato.dik@gmail.com>
* @link
@Satoh-D
Satoh-D / TestGist
Created March 27, 2014 10:33
My snippet
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="keywords" content="">
<title></title>
</head>
<body>
@Satoh-D
Satoh-D / OGP Tags Snippet
Last active August 29, 2015 13:57
OGP Tags snippet
<meta property="og:site_name" content="">
<meta property="og:type" content="article">
<meta property="og:url" content="">
<meta property="og:title" content="">
<meta property="og:description" content="">
<meta property="og:image" content="">
<meta property="og:locale" content="ja_JP">
<meta property="fb:admins" content="">