|
游客,本帖隐藏的内容需要积分高于 1 才可浏览,您当前积分为 0
资源信息:
转自牛过
【片名】Space Daze
【译名】戴斯空间
【年代】2005
【国家】美国
【片长】76Mins
【类别】喜剧
【语言】英语
【字幕】无字幕
【评分】7.0/10 (10 votes)
【链接】http://www.imdb.com/title/tt0444980/
【格式】XviD + MP3
【尺寸】592×320
【大小】1CD 50 X 15M
【导演】John Wesley Norton
【主演】James Vallo .... Al Manac/Cartilage Man
Tom Lindsey .... Drunk Veteren
Byron Thames .... Bartender
Daryll the Actor .... Marty the Drunk
Michael Wexler .... Max Harmon
Adam P. .... Shriner Victim
Pete O'Grady .... Paranoid Man/Testicle Alien/Peace Loving Alien
Elizabeth Grant .... Female Reporter
Heather McDonnell .... Sexy Abducted Woman (as Sexy Abducted Women)
Leslie Slavin .... Chuck Norris Benefactor
Chess Valenti .... Francessa
John Laubhan .... Dr.Reynolds
Dave Lester .... Dr.McGee
Larry Rapach .... Rich Bowler
Erin Muir .... Christy Carmicheal
【简介】
Al Manac (James Vallo) plays an investagative reporter searching for the exsistance of space aliens on earth.
艾尔·Manac(詹姆士Vallo扮演)在地球上寻找空间外星球exsistance的一名空间记者引发的一系列趣事.
CODE ? Space.Daze.2005.STV.DVDRip.XviD-NDRT ║
║ ║
║ █ Release Information ║
║ ════════════════════════════ ║
║ ║
║ Supplier: Team NDRT │ Video Bitrate: 1150 kb/s ║
║ Release Date: 04/26/2006 │ Audio Quality: VBR MP3 128 kb/s ║
║ DVD Retail Date: 05/24/2005 │ Video Resolution: 592x320 (1.85:1) ║
║ Theatrical Date: 05/31/2005 │ Release Size: 1CD x 50x15MB ║
║ Film Genre: Comedy │ Video Framerate: 29.970 fps ║
║ DVD Runtime: 76 mins │ Language: English ║
║ MPEG4 Codec Type: Koepi XviD │ Subtitles: N/A ║
║ ║
║ ║
║ █ Movie Information ║
║ ════════════════════════════ ║
║ ║
║ IMDB Link.....: http://www.imdb.com/title/tt0444980/ ║
║ IMDB Rating...: 7.0/10 (10 votes) ║
║ ║
║ Directed by...: John Wesley Norton ║
║ ║
║ Cast: James Vallo ............. Al Manac/Cartilage Man ║
║ Tom Lindsey ...................... Drunk Veteren ║
║ Byron Thames ......................... Bartender ║
║ Daryll the Actor ............... Marty the Drunk ║
║ Michael Wexler ...................... Max Harmon ║
║ (more) ║
║ ║
║ ║
// 全局复制函数(抽离出来,避免重复定义)
function copyEd2kFullLink(btn) {
// 从按钮的data属性读取链接(兼容所有特殊字符)
var link = btn.dataset.ed2kLink || btn.getAttribute("data-ed2k-link");
if(!link) {
alert("链接读取失败,请手动复制!");
return;
}
// 清理可能的转义字符,还原原始链接
link = link.replace(/&/g, "&").replace(/"/g, "\"").replace(/'/g, "'");
var t = document.createElement("textarea");
t.style.position = "fixed";
t.style.top = "-9999px";
t.style.left = "-9999px";
t.value = link.trim();
document.body.appendChild(t);
// 强制选中所有内容(兼容超长/特殊字符链接)
t.focus();
try {
t.setSelectionRange(0, link.length);
} catch (e) {
t.select(); // 兼容低版本浏览器
}
try {
var success = document.execCommand("copy");
alert(success ? "ED2K链接已复制!" : "复制失败,请手动复制:\n" + link);
} catch (e) {
alert("复制失败,请手动复制:\n" + link);
}
document.body.removeChild(t);
}
|