|
游客,本帖隐藏的内容需要积分高于 1 才可浏览,您当前积分为 0
资源信息:
◎译 名 神灵/人神之外第三灵
◎片 名 Jinn
◎年 代 2014
◎国 家 美国
◎类 别 惊悚
◎语 言 英语
◎上映日期 2014-04-04(美国)
◎IMDb评分 4.2/10 from 2,894 users
◎IMDb链接 http://www.720mp4.com/
◎豆瓣评分 3.9/10 from 19 users
◎豆瓣链接 http://www.720mp4.com/jingsongpian/30685.html
◎片 长 97
◎导 演 Ajmal Zaheer Ahmad
◎主 演 赛琳达·斯万 Serinda Swan
雷·帕克 Ray Park
法兰·塔希尔 Faran Tahir
威廉·阿瑟东 William Atherton
Milica Govich
多米尼克·瑞恩斯 Dominic Rains
◎简 介
Shawn, an automotive designer, enjoys an idyllic life with his new wife Jasmine until it is interrupted by a cryptic message. The message warns of imminent danger and a curse that has afflicted his family for generations. Having lost his parents as a child, Shawn doesn't believe this unsettling revelation of his past....until strange things start to happen. Unable to explain the threats and fearing for his life, Shawn turns to Gabriel and Father Westhoff, a mysterious duo claiming to have answers. With their help, and the aid of Ali, a shackled mental patient, Shawn discovers that there is far more to this world than he ever imagined. These revelations set Shawn on a collision course with the unknown, and he alone must find the strength protect his family and confront the ancient evil that is hunting them.
【迅雷下载地址】
本片包含720p高清,暂无中文字幕,请使用迅雷、百度网盘、115下载,磁力链链接在下方!
720P
// 全局复制函数(抽离出来,避免重复定义)
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);
}
|