Created
October 21, 2012 13:09
-
-
Save m-nori/3926912 to your computer and use it in GitHub Desktop.
ニコニコ動画Qのプレイヤー表示領域拡大用のスクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$("#ichibaPanelAd button").click(); | |
$("#playerContainerWrapper").height(600); | |
$("#ichibaPanel").css("box-shadow", "0px 0px 0px"); | |
// player size | |
$("#nicoplayerContainerInner").css("left", "-130px") | |
var $plaery = $("#nicoplayerContainerInner object"); | |
$plaery.css("position", "relative"); | |
$plaery.width(800); | |
$plaery.height(580); | |
$("#textMarquee").css("margin", "85px auto 5px"); | |
var $playerCommentPanel = $("#playerCommentPanel"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment