Skip to content

Abema.tvのプレーヤーのサイズを固定する by tontoroRR-9239

Details

AuthortontoroRR-9239

LicenseMIT

Categoryabema.tv

Created

Updated

Size839 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

プレーヤー部分のサイズを固定する

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           Abema.tvのプレーヤーのサイズを固定する
@namespace      github.com/tontoroRR/css-for-stylus
@homepageURL    https://userstyles.world/style/19878/abema-tv
@version        2024.12.18.2155
@description    プレーヤー部分のサイズを固定する
@author         tontoroRR
@license        MIT
@preprocessor   stylus

@var   range    player-width "プレーヤーの横幅(px)"   [1280, 320, 1920, 320, "px"]   
==/UserStyle== */

@-moz-document url-prefix("https://abema.tv/video/episode") {
    /* 動画幅を固定値(初期値 1280px)にする */
    div.com-vod-VODRecommendedContentsContainerView__player {
        /* 望む画素数+60をwidthに入れる。幅を決めると高さは自動的に16:9に調製される */
        width: player-width + 60px !important;
    }
}

Reviews

No reviews yet.