http://app.ip.bn765.com/app/index.php/eigyo/story/25/0
- 星井美希
- 天海春香
- 萩原雪歩
スタート | |
1 一発芸披露 | |
2 公約! スタッフと演者含めた誰かが第64夜放送日からコミケ初日まで更新し続ける(止まった人が指定) | |
3 萌 え 萌 え ワ ー ド 一 言 | |
4 モノマネ披露 | |
5 公約! サイン付き限定 CD 作成! | |
6 公約! ひさC ちゃんの一人ニコ生(絶対激論 PR のため) | |
7 公約! サイン付き手書きポストカード作成 | |
8 公約! スタッフと演者含めた誰かが第64夜放送日からコミケ初日まで更新し続ける(止まった人が指定) | |
9 公約! サイン付き手書きポストカード作成! |
// usage: node proxy.js | |
var http = require('http'), | |
httpProxy = require('http-proxy'); | |
var userScripts = [ | |
// 神撃のバハムートの PC 拒否を突破 | |
function() { | |
window.ontouchstart = function(){}; | |
window.orientation = 0; |
body { | |
background: #960000; | |
} | |
#document { | |
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><text x='0' y='60' font-family='%22Times New Roman%22, serif' font-size='60' fill='black'>NINJASLAYER</text></svg>"); | |
padding-top: 70px; | |
} | |
.left_wrap, | |
.list_item .balloon_body |
jQuery.fn.typewriter = function(text, options) { | |
if (typeof(options) === 'undefined') options = {}; | |
if (typeof(options.wait) === 'undefined') options.wait = 50; | |
if (options.wait <= 0) return this.text(text); | |
var type = function(element, wait, text, i) { | |
if (i >= text.length) return; | |
element.insertAdjacentText('beforeend', text.charAt(i)); | |
setTimeout(function(){type(element, wait, text, i+1)}, wait); |
高槻やよい|47101|57|826.333333333333 | |
双葉杏|61943|75|825.906666666667 | |
島村卯月|60634|74|819.378378378378 | |
川島瑞樹|61087|75|814.493333333333 | |
高垣楓|60277|74|814.554054054054 | |
十時愛梨|67261|83|810.373493975904 | |
渋谷凛|58116|72|807.166666666667 | |
向井拓海|51126|64|798.84375 | |
栗原ネネ|53407|67|797.119402985075 | |
星井美希|49109|62|792.08064516129 |
$(".unit-ani-box") | |
.on("mousedown", function() { | |
imas.UnitArea.touch($(this).data("position")); | |
}) | |
.on("mouseup", function() { | |
imas.UnitArea.release($(this).data("position")); | |
}); |
http://app.ip.bn765.com/app/index.php/eigyo/story/25/0
html::after { | |
content: url(http://m.ip.bn765.com/210067ebb48); | |
position: fixed; | |
right: 0; bottom: 0; | |
margin: 0; padding: 0; | |
margin-bottom: -10px; | |
-webkit-filter: drop-shadow(-1px -1px 5px #533); | |
pointer-events:none; | |
} |
// ==UserScript== | |
// @name million live | |
// @include http://app.ip.bn765.com/app/index.php/* | |
// @include http://imas.gree-apps.net/app/index.php/* | |
// ==/UserScript== | |
var script = document.createElement('script'); | |
var f = function() { | |
var handler = function(e) { | |
if (!e.ctrlKey) return; |
// <input type=datetime> の代わりに type=date と type=time を並べる | |
// $("input[type=datetime]").datetimeInput() | |
jQuery.fn.datetimeInput = function(options) { | |
var $ = jQuery; | |
var usable = function(type) { | |
return $("<input>").attr('type', type).prop('type') == type; | |
} | |
// datetime を扱えるブラウザなら何もしない | |
if (usable("datetime")) return; | |
// date, time を扱えないブラウザなら何もしない |