`
java.hero
  • 浏览: 2878 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

欣赏一下火星人写的JS

阅读更多
前言:
据BBC报道美国一火星探测器在绕火探测过程中检测到一神秘信号,后经贝尔实验室解析后发现是一段母牛坐蒸笼的JS,本人不敢独享,特转来献给JE的兄弟姐妹.出处:[转火星探测器]
说明:拷贝代码下来另存为html即可运行。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Wanna tell her - interactive DHTML </title>
<meta http-equiv="imagetoolbar" content="no">
<style type="text/css">
html {
overflow: hidden;
}
body {
position: absolute;
margin: 0px;
padding: 0px;
background: #fff;
width: 100%;
height: 100%;
}
#screen {
position: absolute;
left: 10%;
top: 10%;
width: 80%;
height: 80%;
background: #fff;
}
#screen img {
position: absolute;
cursor: pointer;
width: 0px;
height: 0px;
-ms-interpolation-mode:nearest-neighbor;
}
#bankImages {
visibility: hidden;
}
#FPS {
position: absolute;
right: 5px;
bottom: 5px;
font-size: 10px;
color: #666;
font-family: verdana;
}

</style>

<script type="text/javascript">
/* ==== Easing function ==== */
var Library = {};
Library.ease = function () {
this.target = 0;
this.position = 0;
this.move = function (target, speed) {
this.position += (target - this.position) * speed;
}
}

var tv = {
/* ==== variables ==== */
O : [],
fps : 0,
screen : {},
angle : {
x : new Library.ease(),
y : new Library.ease()
},
camera : {
x    : new Library.ease(),
y    : new Library.ease()
},
create3DHTML : function (i, x, y, z, sw, sh) {
/* ==== create HTML image element ==== */
var o = document.createElement('img');
o.src = i.src;
tv.screen.obj.appendChild(o);
/* ==== 3D coordinates ==== */
o.point3D = {
x  : x,
y  : y,
z  : new Library.ease(),
sw : sw,
sh : sh,
w  : i.width,
h  : i.height
};
o.point3D.z.target = z;
/* ==== push object ==== */
o.point2D = {};
tv.O.push(o);

/* ==== on mouse over event ==== */
o.onmouseover = function () {
if (this != tv.o) {
this.point3D.z.target = tv.mouseZ;
tv.camera.x.target = this.point3D.x;
tv.camera.y.target = this.point3D.y;
if (tv.o) tv.o.point3D.z.target = 0;
tv.o = this;
}
return false;
}

/* ==== on mousedown event ==== */
o.onmousedown = function () {
if (this == tv.o) {
if (this.point3D.z.target == tv.mouseZ) this.point3D.z.target = 0;
else {
tv.o = false;
this.onmouseover();
}
}
}

/* ==== main 3D function ==== */
o.animate = function () {
/* ==== 3D coordinates ==== */
var x = this.point3D.x - tv.camera.x.position;
var y = this.point3D.y - tv.camera.y.position;
this.point3D.z.move(this.point3D.z.target, this.point3D.z.target ? .15 : .08);
/* ==== rotations ==== */
var xy = tv.angle.cx * y  - tv.angle.sx * this.point3D.z.position;
var xz = tv.angle.sx * y  + tv.angle.cx * this.point3D.z.position;
var yz = tv.angle.cy * xz - tv.angle.sy * x;
var yx = tv.angle.sy * xz + tv.angle.cy * x;
/* ==== 2D transform ==== */
var scale = tv.camera.focalLength / (tv.camera.focalLength + yz);
x = yx * scale;
y = xy * scale;
var w = Math.round(Math.max(0, this.point3D.w * scale * this.point3D.sw));
var h = Math.round(Math.max(0, this.point3D.h * scale * this.point3D.sh));
/* ==== HTML rendering ==== */
var o    = this.style;
o.left  = Math.round(x + tv.screen.w - w * .5) + 'px';
o.top    = Math.round(y + tv.screen.h - h * .5) + 'px';
o.width  = w + 'px';
o.height = h + 'px';
o.zIndex = 10000 + Math.round(scale * 1000);
}
},

/* ==== init script ==== */
init : function (structure, FL, mouseZ, rx, ry) {
this.screen.obj = document.getElementById('screen');
this.screen.obj.onselectstart = function () { return false; }
this.screen.obj.ondrag        = function () { return false; }
this.mouseZ = mouseZ;
this.camera.focalLength = FL;
this.angle.rx = rx;
this.angle.ry = ry;
/* ==== create objects ==== */
var i = 0, o;
while( o = structure[i++] )
this.create3DHTML(o.img, o.x, o.y, o.z, o.sw, o.sh);
/* ==== start script ==== */
this.resize();
mouse.y = this.screen.y + this.screen.h;
mouse.x = this.screen.x + this.screen.w;
/* ==== loop ==== */
setInterval(tv.run, 16);
setInterval(tv.dFPS, 1000);
},

/* ==== resize window ==== */
resize : function () {
var o = tv.screen.obj;
if (o) {
tv.screen.w = o.offsetWidth / 2;
tv.screen.h = o.offsetHeight / 2;
for (tv.screen.x = 0, tv.screen.y = 0; o != null; o = o.offsetParent) {
tv.screen.x += o.offsetLeft;
tv.screen.y += o.offsetTop;
}
}
},

/* ==== main loop ==== */
run : function () {
tv.fps++;
/* ==== motion ease ==== */
tv.angle.x.move(-(mouse.y - tv.screen.h - tv.screen.y) * tv.angle.rx, .1);
tv.angle.y.move( (mouse.x - tv.screen.w - tv.screen.x) * tv.angle.ry, .1);
tv.camera.x.move(tv.camera.x.target, .025);
tv.camera.y.move(tv.camera.y.target, .025);
/* ==== angles sin and cos ==== */
tv.angle.cx = Math.cos(tv.angle.x.position);
tv.angle.sx = Math.sin(tv.angle.x.position);
tv.angle.cy = Math.cos(tv.angle.y.position);
tv.angle.sy = Math.sin(tv.angle.y.position);
/* ==== loop through images ==== */
var i = 0, o;
while( o = tv.O[i++] ) o.animate();
},

/* ==== trace frames per seconds ==== */
dFPS : function () {
document.getElementById('FPS').innerHTML = tv.fps + ' FPS';
tv.fps = 0;
}
}

/* ==== global mouse position ==== */
var mouse = {
x : 0,
y : 0
}
document.onmousemove = function(e) {
if (window.event) e = window.event;
mouse.x = e.clientX;
mouse.y = e.clientY;
return false;
}

/* ==== starting script ==== */
onload = function() {
onresize = tv.resize;
/* ==== build grid ==== */
var img = document.getElementById('bankImages').getElementsByTagName('img');
var structure = [];
for (var i = -300; i <= 300; i += 120)
for (var j = -300; j <= 300; j += 120)
structure.push({ img:img[0], x:i, y:j, z:0, sw:.5, sh:.5 });
/* ==== let's go ==== */
tv.init(structure, 350, -200, .005, .0025);
}

</script>
</head>

<body>

<div id="screen"> </div>

<div id="bankImages">
<img alt="" src="http://avatar.profile.csdn.net/D/0/9/2_cicadu.jpg">
</div>
<div id="FPS"> </div>

</body>
</html>
分享到:
评论
28 楼 KimHo 2009-01-13  
<div id="bankImages">
<img alt="" src="http://avatar.profile.csdn.net/D/0/9/2_cicadu.jpg">
</div>

把src的url改成你所想要显示的图片链接地址,就可以看见你想要的效果了。
27 楼 surpass 2009-01-13  
NB不是一点半点啊
26 楼 kkkk 2009-01-13  
强!!!
蒸牛B
25 楼 xman 2009-01-13  
很占cpu
24 楼 buaawhl 2009-01-13  
网页中的图片来源。这个应该是可以换的。



<div id="bankImages">
<img alt="" src="http://avatar.profile.csdn.net/D/0/9/2_cicadu.jpg">
</div>

23 楼 xiongzhijian 2009-01-13  
太强撒,有空多指教
22 楼 瀚愚 2009-01-13  
<div class="quote_title">java.hero 写道</div>
<div class="quote_div">
<div class="quote_title">java.lang.Object 写道</div>
<div class="quote_div">
<div class="quote_title">魔兽精神 写道</div>
<div class="quote_div">噢~<br />母牛坐蒸笼的JS 是啥意思</div>
<br />同问,不知道什么意思</div>
<p><br />图示:</p>
<p><img src="http://hiphotos.baidu.com/javawang1984/abpic/item/cf8835fab9f3818958ee9036.jpg" alt="&#27597;&#29275;&#20570;&#33976;&#31548;&#22270;&#31034;" style="vertical-align: text-bottom;" /></p>
</div>
<p>蒸牛B</p>
21 楼 抛出异常的爱 2009-01-13  
强烈的晕三D
20 楼 aids198311 2009-01-13  
强.来学习了!
19 楼 b-mirror 2009-01-13  

很NB的效果
18 楼 samsam 2009-01-13  
很强,一直觉得js是很神奇的语言
17 楼 spacefly 2009-01-13  
很好玩~~~
16 楼 zznj1123 2009-01-13  
不错..............
15 楼 ftmouse 2009-01-13  
的确比较nb
14 楼 dada_911911 2009-01-13  
超强!!支持下
13 楼 1314520ln 2009-01-13  
怎么实现的那个3D空间效果的....正在看代码中...
12 楼 lizhuang 2009-01-13  
很好很强大
11 楼 1314520ln 2009-01-13  
真牛B...哈哈...我很中意哦!
10 楼 java.hero 2009-01-13  
<div class="quote_title">java.lang.Object 写道</div>
<div class="quote_div">
<div class="quote_title">魔兽精神 写道</div>
<div class="quote_div">噢~<br />母牛坐蒸笼的JS 是啥意思</div>
<br />同问,不知道什么意思</div>
<p><br />图示:</p>
<p><img src="http://hiphotos.baidu.com/javawang1984/abpic/item/cf8835fab9f3818958ee9036.jpg" alt="&#27597;&#29275;&#20570;&#33976;&#31548;&#22270;&#31034;" style="vertical-align: text-bottom;" /></p>
9 楼 laiseeme 2009-01-13  
蒸牛13..........

相关推荐

    noip火星人源程序

    这种交流方法是这样的,首先,火星人把一个非常大的数字告诉人类科学家,科学家破解这个数字的含义后,再把一个很小的数字加到这个大数上面,把结果告诉火星人,作为人类的回答。 火星人用一种非常简单的方式来表示...

    js火星文转化,html火星文转化

    `huoxing.js`可能是一个实现火星文转换功能的JavaScript脚本。在JavaScript中,我们可以使用各种字符串方法,如`split()`来分割字符串,`replace()`或正则表达式来替换特定字符,以及`join()`来重新组合字符串。例如...

    火星人影音播放器(C#版)

    火星人影音播放器是一款专为用户打造的免费多媒体播放软件,尤其吸引人的地方在于它采用C#编程语言进行开发,这使得它在易用性、性能和稳定性上都有一定的优势。C#是一种现代化的面向对象的编程语言,由微软公司推出...

    火星人敏捷开发手册

    《火星人敏捷开发手册》是一本专注于敏捷开发实践的指南,由火星人出版,以图文并茂的方式深入浅出地阐述了敏捷开发的核心理念和实施方法。这本书的目的是帮助读者理解并掌握敏捷开发这一现代软件开发的重要模式。 ...

    火星人:首次公开发行股票并在创业板上市招股说明书.PDF

    火星人:首次公开发行股票并在创业板上市招股说明书.PDF

    火星人敏捷开发手册.pdf

    火星人敏捷开发手册是一份基于Scrum敏捷方法的培训资料,旨在帮助读者理解和应用敏捷开发理念,特别是Scrum框架。Scrum是一种灵活且注重实效的项目管理方法,源自体育中的橄榄球战术,强调团队协作和适应变化。手册...

    20210524-中信证券-火星人-300894-投资价值分析报告:“线上+线下”双驱动,打造高端品牌.pdf

    报告标题《***-中信证券-火星人-300894-投资价值分析报告:“线上+线下”双驱动,打造高端品牌》表明了研究对象为火星人公司,股票代码为300894,分析内容涉及该公司的投资价值。报告由中信证券研究部发布,主要分析...

    火星人敏捷开发手册 pdf.rar

    火星人敏捷开发手册,pdf格式,编写初衷有两个:1. 希望每次培训课前,大家已经对基本概念有所了解,而不是从头听,这样有限的时间就可以用来解决真正的“敏捷如何应用”的问题而不是“敏捷是什么”的问题。花钱去听...

    20210312-申万宏源-火星人-300894-第三代集成灶领军者,线上线下双轮驱动.pdf

    本文档主要讨论的是火星人公司(股票代码300894)及其在集成灶市场中的地位、战略和前景。火星人是一家专注于第三代集成灶的生产和销售的企业,被定位为该领域的领军者。文件中还详细介绍了火星人的线上线下双轮驱动...

    火星人:2020年年度报告.PDF

    火星人厨具股份有限公司2020年的年度报告详尽地展示了公司在过去一年的运营状况、财务表现以及未来的发展战略。这份报告不仅是对公司内部管理、财务状况和业绩的全面总结,也是对外界投资者和市场的一份重要信息披露...

    20210611-开源证券-火星人-300894-公司首次覆盖报告:集成灶行业风起,龙头新贵积极进取趋势向好.pdf

    从报告中可以看到,集成灶企业火星人(股票代码:300894)作为集成灶行业的龙头新贵,凭借其在产品、渠道、品牌和供应链上的优势,有望持续受益于市场规模的扩大。 火星人公司通过不断的技术研发和创新,形成了以...

    铁将军火星人8958汽车防盗报警器说明书及安装图

    铁将军火星人8958汽车防盗报警器说明书及安装图

    火星人敏捷开发手册 2011-08-18

    ### 火星人敏捷开发手册 2011-08-18 知识点解析 #### 一、Scrum概览 **Scrum**是一种敏捷开发框架,它结合了计划性和灵活性,旨在提高软件开发团队的效率。其名称来源于橄榄球中的“带球过人”动作,意味着在明确...

    火星人敏捷开发手册 2012-06-30.pdf

    ### 敏捷开发与Scrum方法论 #### Scrum概览 Scrum作为一种敏捷开发框架,旨在通过迭代式和增量式的方式实现项目管理和产品开发。...希望这份火星人敏捷开发手册能够帮助读者更好地理解和应用敏捷开发的原则和实践。

    火星人敏捷开发手册 2012-12-25

    火星人敏捷开发手册是2012年发布的一份详细指南,主要聚焦于Scrum敏捷开发方法的应用与实践。这份手册不仅适用于IT行业的专业人士,也是企业和团队内部培训的理想材料,旨在帮助团队成员理解并掌握敏捷开发的核心...

Global site tag (gtag.js) - Google Analytics