滚动通知跳转

This commit is contained in:
al 2025-01-16 20:56:30 +08:00
parent 65728f9bcd
commit 783076d290
2 changed files with 25 additions and 17 deletions

View File

@ -38,7 +38,29 @@ export default function ScrollNotice({ data }) {
// // 如果你需要在组件卸载时停止动画,你需要实现一个机制来跟踪组件的状态,并在适当时调用`stopAnimation`。 // // 如果你需要在组件卸载时停止动画,你需要实现一个机制来跟踪组件的状态,并在适当时调用`stopAnimation`。
// }, [fadeAnim]); // }, [fadeAnim]);
return ( return (
<div className="bg-[#301024] border-2 border-[#FF518F26] px-4 py-3 rounded-xl flex-row"> <div
className="bg-[#301024] border-2 border-[#FF518F26] px-4 py-3 rounded-xl flex-row"
onClick={() => {
const links = data?.hyperlinks;
if (links.length > 1) {
router.push(links[1]?.url);
} else {
if (links[0]?.action === "outward") {
// 在新的标签也打开
window.open(links[0]?.url);
} else {
// alert(links[0]?.params);
// alert(encodeURIComponent(links[0]?.params));
router.push(
`/webView/${encodeURIComponent(
links[0]?.params +
`?base=${encodeURIComponent(JSON.stringify(base))}`
)}`
);
}
}
}}
>
<NoticeBar <NoticeBar
icon={ icon={
<OwnIcon <OwnIcon
@ -48,22 +70,7 @@ export default function ScrollNotice({ data }) {
/> />
} }
bordered={false} bordered={false}
content={ content={<div>{data.content}</div>}
<div
onClick={() => {
const links = data?.hyperlinks;
if (links.length > 1) {
links[1]?.action === "app_router_path";
router.push(links[1]?.url);
} else {
links[0]?.action === "outward";
router.push(links[0]?.url);
}
}}
>
{data.content}
</div>
}
style={{ style={{
"--background-color": "transparent", "--background-color": "transparent",
"--height": "max-content", "--height": "max-content",

View File

@ -86,6 +86,7 @@ export const handleShowVideo = (video) => {
width="100%" width="100%"
height="100%" height="100%"
controls controls
autoPlay
controlsList="nodownload noplaybackrate noremoteplayback toggleaudio" controlsList="nodownload noplaybackrate noremoteplayback toggleaudio"
muted={true} muted={true}
className={`w-full object-contain`} className={`w-full object-contain`}