Skip to content

Instantly share code, notes, and snippets.

@maehara000
maehara000 / coding-support.js
Last active November 14, 2018 03:58
デザイン通りにコーディングしやすくする制作補助用プラグイン。
/*
* コーディングサポート機能の追加
*/
(function ($, window, document){
$(function(){
/* ----------- ↓諸々の設定↓ ----------- */
// false or true 「画像被せ機能」を使うなら「true」に。使わないなら「false」にする
var img_cover = true;
@maehara000
maehara000 / gude-line.js
Last active September 8, 2018 03:03
コーディング時にガイドラインを表示するjs
/* ----------- ガイドラインを表示・非表示 ----------- */
(function ($, window, document){
$(function(){
// ガイドラインを操作するボタンを追加
$('body').append('<div class="guide-button-wrap"><div class="guide-button -on">GuideLine</div><div class="hide-button">Hide</div></div>');
// ガイドラインを追加
$('body').append('<div class="gl-center"><div class="gl-left"></div><div class="gl-right"></div></div>');
$('.guide-button-wrap').css({ // 表示切替ボタンの位置調整
position: 'fixed',