Skip to content

Instantly share code, notes, and snippets.

@gawaooooo
gawaooooo / gist:3089082
Created July 11, 2012 08:45
【jQuery】IE7でjQueryのattrが効かない
// jQueryで以下のコードを実行したら、IE7だけ効かなかった
$(ui.helper)
.find('img')
.attr({'width': '100px', 'height': '100px'})
.end()
.find('span.count').remove();
// IE7はimgのwidth, heightが変わらない
// attr->cssに変更したら解決
@gawaooooo
gawaooooo / test.html
Created July 11, 2012 11:55
【jQuery】wrapInner:各要素の子要素を、HTMLで作成した要素で囲む
var elm = $('div.hoge');
elm
.find('span.count').remove()
.end()
.css({'z-index': 100,
'position': 'absolute',
'left': '10px',
'top': '20px'
})
.find('img')
@gawaooooo
gawaooooo / backgroundImage.js
Created July 23, 2012 03:17
【jQuery】background image を変更する
// 設定されたbackground-imageのurlを無効にする場合
$('#hoge').css('background-image', 'none');
// background-imageのurlを変更する場合
$('#hoge').css('background-image', 'url(test.png)');
@gawaooooo
gawaooooo / imagepreload.js
Created August 3, 2012 05:58
【jQuery】image preload
// 画像の先読み
var imageList = ['top/a.png', 'top/b.png', 'top/c.png'],l = imageList.length, i = 0;
for(; i < l; i++) {
$('<img/>')[0].src = imageList[i];
}
@gawaooooo
gawaooooo / Cakefile
Last active December 11, 2015 03:38
Cakefile
fs = require 'fs'
{exec, spawn} = require 'child_process'
{parser, uglify} = require 'uglify-js'
files = []
# 該当パスのファイルを取得するやつ
get_file = (path) ->
text = ''
stat = fs.statSync(path)
if stat.isDirectory()
@gawaooooo
gawaooooo / Cakefile
Last active December 11, 2015 23:59
Cakefile 更新版
fs = require 'fs'
{exec, spawn} = require 'child_process'
{parser, uglify} = require 'uglify-js'
files = []
# 指定されたパスのファイルを取得する
get_file = (path) ->
text = ''
stat = fs.statSync(path)
if stat.isDirectory()
@gawaooooo
gawaooooo / test.php
Last active December 12, 2015 08:38 — forked from hoPPen/test.php
<?php
echo "test";
echo "fork test.php";
?>
<html>
<head>
<meta charset="utf-8">
<title>Twitter + OAuth + JavaScript search api test</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
"></script>
<script type="text/javascript" src="oauth.js"></script>
<script type="text/javascript" src="sha1.js"></script>
<script type="text/javascript">
// Twitterオブジェクトのコンストラクタ・プロトタイプ定義
@gawaooooo
gawaooooo / yokoyure.coffee
Created March 13, 2013 03:45
JavaScriptで横揺れ
count = 0
degree = 0
radian = 0
speed = 25
radius = 5
beforeLeft = @targetEnemy.css('left')
# centerX = parseInt(@targetEnemy.css('left'), 10) /2
x = (if beforeLeft is 'auto' then 0 else parseInt(beforeLeft, 10))
timer = setInterval(=>
if count <= 100
@gawaooooo
gawaooooo / download.sh
Created March 12, 2014 04:47
指定URLから連番のファイルを取得するスクリプト作ってみた
#!/bin/bash
#
# @(#) download.sh ver.1.0.1 2014.03.12
#
# Usage:
# download.sh start end dir
# start - 取得するファイルの開始番号.
# end - 取得するファイルの終了番号.
# dir - 保存先ディレクトリ.
# isSleep - 1/スリープあり 0/スリープなし