javascript

jqueryで適当に検索フィルタ

正規表現

正規表現 ファイル名 ディレクトリ var path1 = "C:/Users/Administrator/Desktop/test/hoge.html"; var path2 = "http://www.sample.com/test/hoge.html"; // directory console.log(path1.match(/^.*\//)); // file console.log(path1.replace(/^.*\//, ""…

tmlib + javascript(coffeescript) エフェクト?

色々あってjavascript書いててバッドプラクティスいちいち面倒で、 coffeescript使いだした。 あとゲーム作成用にtmlibも使用。 参考URLvar.blog.jp をちょっとしたタッチ演出用に書き換えてみた。 SCREEN_WIDTH = 465 SCREEN_HEIGHT = 465 SCREEN_CENTER_X …