新增:新人首次入住聊天室大礼包自动发放功能(6666金币 + 满场烟花 + 公屏欢迎)

This commit is contained in:
2026-02-27 17:21:33 +08:00
parent efc4dfd752
commit 4ef95eaa27
4 changed files with 97 additions and 31 deletions

View File

@@ -103,13 +103,20 @@
@include('chat.partials.scripts')
{{-- 周卡特效:登录时自动播放(仅持卡用户可见) --}}
@if (!empty($weekEffect))
{{-- 进房特效自动播放:新人烟花礼包 / 周卡特效 --}}
@if (!empty($newbieEffect) || !empty($weekEffect))
<script>
/** 周卡特效延迟1秒待页面完成加载后自动播放 */
/**
* 延迟1秒待页面完成初始化后自动播放进房附带的特效
* 优先级:如果有新人礼包特效,优先播放新人大礼包;如果没有,再播放周卡特效
*/
setTimeout(() => {
if (window.EffectManager) {
window.EffectManager.play('{{ $weekEffect }}');
@if (!empty($newbieEffect))
window.EffectManager.play('{{ $newbieEffect }}');
@elseif (!empty($weekEffect))
window.EffectManager.play('{{ $weekEffect }}');
@endif
}
}, 1000);
</script>