Rantetsu Inori
Rantetsu Inori
### What minimal example or steps are needed to reproduce the bug? ```css a { top: anchor(top); right: anchor(right); bottom: anchor(bottom); left: anchor(left); inset: anchor(center); inset-block: anchor(center); inset-inline: anchor(center); inset-block-start:...
## Describe the feature These two functions come from Styled Components. `keyframes` function will create a CSS keyframes with a unique name, to make sure that there are no naming...
特性:在背景图像设置中新增适应和位置设置。 需求:原本默认仅会适应背景图像的中部区域,假如用户正在使用电脑(即横屏)并采用一张竖屏图像作为背景,则有可能正好看不见图像中的头部区域。新功能允许你自定义背景图像的画面裁切区域,并允许选择适应方式。
类似于 Wikipedia/MediaWiki 的“链入页面”功能。可以从一个视频反查有哪些其它视频简介或评论中添加了超链接来链接到此视频。 使用例: 假如你组织了一个音mad合作。当你发布合作视频之后,其他合作成员会陆续发布合作单品,并在这些单品中的视频简介中写上该合作视频的链接。 问题在于,观众可以很轻松地从合作单品视频链接跳转到合作成品视频链接,但很难从合作成品视频链接反推回各个合作单品的视频链接。 因此我参考了 Wikipedia/MediaWiki 的“链入页面”功能,能够从目标视频链接反向查找回链入该视频的各个链接。
这部分想法是自己睡觉做梦时想到的。 允许*视频创作者*调整弹幕在视频上的显示区域,避免弹幕遮挡视频顶部或底部文字的重要内容。 例如视频在顶部本身本身包含文字,亦或者视频创作者想在视频顶部预留“视频自带弹幕”区域。则可以将单个视频的弹幕区域下移,避开顶部区域。底部有字幕时也同理(B站自带的防挡字幕功能是傻瓜式的,即假如视频是21:9宽屏视频,则开启防挡字幕后反而会遮挡字幕)。
我是想到一个功能,就是看他们这些网站时想到的。有的视频非常长(比如音mad合作),通过看进度条预览也很麻烦。我在想可以把所有时间节点的预览缩略图全部平铺显示出来上下滚动,然后用户可以点击其中的缩略图来快速跳转到某一时间。
### Description 有极少数情况可能需要在 label 字段使用非字符串值,或者说其实就是要类似于 `() => string` 这样的值。在之前的[评论](https://github.com/shijistar/enum-plus/issues/24#issuecomment-3483535126)中提到枚举中不应该直接声明成最终字符串,否则多语言翻译功能就会失效。然而 i18n 中可能需要使用复数、插值等构造一个字符串,但是 label 字段只能声明为 string,这产生了错误。例如: ```typescript const PetEnum = Enum({ oneDog: { value: 0, label: i18n.t("pet.dog", { count: 1 }), icon:...
### What kind of issue is this? - [x] React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization) - [x] babel-plugin-react-compiler (build issue installing...
Cannot use `styled.search` to create a [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/search) tag. Although you can use `styled("search")`, however the typescript typing is wrong (got `never` instead of `HTMLElement`). And the DevTools console will report...
ESLint `sort-imports` has a option `allowSeparatedGroups` that checks the sorting of import declaration statements only for those that appear on consecutive lines. But `import/order` doesn't have. Although you can achieve...