導覽列上移、搜尋框變小、影片區上移、影片區放大
J_youtube.com by j265130
Details
Authorj265130
LicenseNo License
Categoryyoutube.com
Created
Updated
Size1.9 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name J_youtube.com
@namespace github.com/openstyles/stylus
@version 2.8
@description 導覽列上移、搜尋框變小、影片區上移、影片區放大
@author J
==/UserStyle== */
@-moz-document domain("youtube.com") {
/*網頁頂端 導覽列上移*/
div#masthead-container/*不要加.ytd-masthead,會無法移動*/
{
top: -14px !important;
}
/*網頁頂端 搜尋框變小*/
div#center.style-scope.ytd-masthead {
transform: scale(0.70);
}
/* 轉給JS腳本:YouTube_J自訂功能,以配合操作全螢幕的比例,2024-11-01。
/*影片區上移*/
ytd-watch-flexy.style-scope.ytd-page-manager.watch-root-element.hide-skeleton {
margin-top: -15px;
}
*/
/* 轉給JS腳本:YouTube_J自訂功能,以配合操作全螢幕的比例,2024-10-31。
/*影片區放大*/
div#container.style-scope.ytd-player {
transform: scale(1.03);
}
*/
/*影片進度條縮小*/
div.ytp-progress-bar-container {
transform: scale(0.97);
}
/*影片控制列縮小*/
div.ytp-chrome-controls {
transform: scale(0.97);
}
*/
/*不能加大這個,會有左右滾輪出現。
div#full-bleed-container.style-scope.ytd-watch-flexy {
transform: scale(1.03);
}
*/
/*這個在div#container.style-scope.ytd-player之內,放大會被限制在框內。
video.video-stream.html5-main-video {
transform: scale(1.00);
}
*/
/*沒用的東西
div.ytp-player-content.ytp-iv-player-content {
left: 0px;
right: 0px;
bottom: 0px;
}
*/
/*只有播放列有變大。
div#container.ytd-player {
height: 110%;
}
*/
/*影片會穿圖到上面有一條很醜。
div#background.style-scope.ytd-masthead {
bottom: -18px;
}
*/
/*
div#movie_player {
top : -29px !important;/*影片區上移*/
/*bottom: 0px !important;/*影片區下方歸零,但這句會被YT擋掉
}
*/
}