⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 star_6_2.htm

📁 一个心理测试软件
💻 HTM
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<STYLE type=text/css>
#scrollerContent {
	POSITION: absolute;
	left: 19px;
}
body{FONT-SIZE: 9pt; COLOR: #000000;LINE-HEIGHT: 16pt; FONT-FAMILY: '宋体'}
</STYLE>
<script>
var upH = 20;
var upW = 15;
var downH = 20;
var downW = 15;
var dragH = 40;
var dragW = 15;
var scrollH =259;
var speed =9;
var dom = document.getElementById ? true:false;
var nn4 = document.layers ? true:false;
var ie4 = document.all ? true:false;
var mouseY;
var mouseX;
var clickUp = false;
var clickDown = false;
var clickDrag = false;
var clickAbove = false;
var clickBelow = false;
var timer = setTimeout("",500);
var upL;
var upT;
var downL;
var downT;
var dragL;
var dragT;
var rulerL;
var rulerT;
var contentT;
var contentH;
var contentClipH;
var scrollLength;
var startY;
function down(e){
if((document.layers && e.which!=1) || (document.all && event.button!=1)) return true;
getMouse(e);
startY = (mouseY - dragT);
if(mouseX >= upL && (mouseX <= (upL + upW)) && mouseY >= upT && (mouseY <= (upT + upH))){
clickUp = true;
return scrollUp();
}
else if(mouseX >= downL && (mouseX <= (downL + downW)) && mouseY >= downT && (mouseY <= (downT + downH))){
clickDown = true;
return scrollDown();
}
else if(mouseX >= dragL && (mouseX <= (dragL + dragW)) && mouseY >= dragT && (mouseY <= (dragT + dragH))){
clickDrag = true;
return false;
}
else if(mouseX >= dragL && (mouseX <= (dragL + dragW)) && mouseY >= rulerT && (mouseY <= (rulerT + scrollH))){
if(mouseY < dragT){
clickAbove = true;
clickUp = true;
return scrollUp();
}
else{
clickBelow = true;
clickDown = true;
return scrollDown();
}
}
else{
return true;
}
}
function move(e){
if(clickDrag && contentH > contentClipH){
getMouse(e);
dragT = (mouseY - startY);
if(dragT < (rulerT))
dragT = rulerT;
if(dragT > (rulerT + scrollH - dragH))
dragT = (rulerT + scrollH - dragH);
contentT = ((dragT - rulerT)*(1/scrollLength));
contentT = eval('-' + contentT);
moveTo();
if(ie4)
return false;
}
}
function up(){
clearTimeout(timer);
clickUp = false;
clickDown = false;
clickDrag = false;
clickAbove = false;
clickBelow = false;
return true;
}
function getT(){
if(ie4)
contentT = document.all.scrollerContent.style.pixelTop;
else if(nn4)
contentT = document.scrollerContentClip.document.scrollerContent.top;
else if(dom)
contentT = parseInt(document.getElementById("scrollerContent").style.top);
}
function getMouse(e){
if(ie4){
mouseY = event.clientY + document.body.scrollTop;
mouseX = event.clientX + document.body.scrollLeft;
}
else if(nn4 || dom){
mouseY = e.pageY;
mouseX = e.pageX;
}
}
function moveTo(){
if(ie4){
document.all.scrollerContent.style.top = contentT;
document.all.ruler.style.top = dragT;
document.all.drag.style.top = dragT;
}
else if(nn4){
document.scrollerContentClip.document.scrollerContent.top = contentT;
document.ruler.top = dragT;
document.drag.top = dragT;
}
else if(dom){
document.getElementById("scrollerContent").style.top = contentT + "px";
document.getElementById("drag").style.top = dragT + "px";
document.getElementById("ruler").style.top = dragT + "px";
}
}
function scrollUp(){
getT();
if(clickAbove){
if(dragT <= (mouseY-(dragH/2)))
return up();
}
if(clickUp){
if(contentT < 0){
dragT = dragT - (speed*scrollLength);
if(dragT < (rulerT))
dragT = rulerT;
contentT = contentT + speed;
if(contentT > 0)
contentT = 0;
moveTo();
timer = setTimeout("scrollUp()",25);
}
}
return false;
}
function scrollDown(){
getT();
if(clickBelow){
if(dragT >= (mouseY-(dragH/2)))
return up();
}
if(clickDown){
if(contentT > -(contentH - contentClipH)){
dragT = dragT + (speed*scrollLength);
if(dragT > (rulerT + scrollH - dragH))
dragT = (rulerT + scrollH - dragH);
contentT = contentT - speed;
if(contentT < -(contentH - contentClipH))
contentT = -(contentH - contentClipH);
moveTo();
timer = setTimeout("scrollDown()",25);
}
}
return false;
}
function reloadPage(){
location.reload();
}
function eventLoader(){
if(ie4){
upL = document.all.up.style.pixelLeft;
upT = document.all.up.style.pixelTop;
downL = document.all.down.style.pixelLeft;
downT = document.all.down.style.pixelTop;
dragL = document.all.drag.style.pixelLeft;
dragT = document.all.drag.style.pixelTop;
rulerT = document.all.ruler.style.pixelTop;
contentH = parseInt(document.all.scrollerContent.scrollHeight);
contentClipH = parseInt(document.all.scrollerContentClip.style.height);
}
else if(nn4){
upL = document.up.left;
upT = document.up.top;
downL = document.down.left;
downT = document.down.top;
dragL = document.drag.left;
dragT = document.drag.top;
rulerT = document.ruler.top;
contentH = document.scrollerContentClip.document.scrollerContent.clip.bottom;
contentClipH = document.scrollerContentClip.clip.bottom;
}
else if(dom){
upL = parseInt(document.getElementById("up").style.left);
upT = parseInt(document.getElementById("up").style.top);
downL = parseInt(document.getElementById("down").style.left);
downT = parseInt(document.getElementById("down").style.top);
dragL = parseInt(document.getElementById("drag").style.left);
dragT = parseInt(document.getElementById("drag").style.top);
rulerT = parseInt(document.getElementById("ruler").style.top);
contentH = parseInt(document.getElementById("scrollerContent").offsetHeight);
contentClipH = parseInt(document.getElementById("scrollerContentClip").offsetHeight);
document.getElementById("scrollerContent").style.top = 0 + "px";
}
scrollLength = ((scrollH-dragH)/(contentH-contentClipH));
if(nn4){
document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE | Event.MOUSEUP);
window.onresize = reloadPage;
}
document.onmousedown = down;
document.onmousemove = move;
document.onmouseup = up;
}
</script>

</head>

<body onload="eventLoader()">
<SPAN id=drag style="LEFT: 535px;POSITION: absolute; TOP: 27px">
 <IMG height=40 src="image/slider.gif" width=15>
</SPAN>
<SPAN id=ruler style="TOP: 27px">
</SPAN>
<SPAN id=up style="LEFT: 535px; POSITION: absolute; TOP: 6px">
 <IMG height=20 alt="" src="image/scrollup.gif" width=15 border=0>
</SPAN>
<SPAN id=down style="LEFT: 535px; POSITION: absolute; TOP: 287px">
 <IMG height=20 alt="" src="image/scrolldown.gif" width=15 border=0>
</SPAN>
<SPAN id=scrollerContentClip style=" LEFT: 2px; VISIBILITY: visible; OVERFLOW: hidden; WIDTH: 525px; CLIP: rect(0px 540px 310px 0px); POSITION: absolute; TOP: 2px; HEIGHT: 310px;border:#708CB0 1px solid">
<SPAN
id=scrollerContent style="width: 490px; height: 300px">
<p><b>室女座的概述</b><p>
      <p>★阴性、土象星座,守护行星:水星★</p>
      <p>  处女座的人看起来乾乾净净、伶俐过人,拥有一双眼神柔和且观察入微的眼睛,嘴型优美,下颚宽阔,整体而言,散发着清新而高雅的气质。喜欢批评他人。</p>
      <p>★神话由来★</p>
      <p>  根据罗马神话,处女座又名艾思翠诗(Astraes),为天神邾比特和希蜜丝女神的女儿,是正义女神。黄金时代末期,人类触犯了她,於是大怒之下回到天庭。</p>
      <p>★优点★</p>
      <p>  谦虚、喜欢整洁、处事小心、头脑清晰而分析能力强、能明辨是非。</p>
      <p>★缺点★</p>
      <p>  喜欢鸡蛋里挑骨头、要求太高以致吹毛求疵、多愁善感、小题大作、古板、难以取悦。</p>
      <p>★性格★</p>
      <p>  处女座的人十分看重枝微末节,常为了小地方的完美而忽略了大局。水星的位置影响这种倾向的强弱,例如若太阳的位置在处女座,水星的位置在狮子座时,则较能顾全大局。他们工作勤奋、重实际,优秀的处女座人不仅慎重且具有乐於助人的天性,他们具有服务精神,并充份享受施予的乐趣。</p>
      <p>  因为有一股来自精神的力量支撑其行动力,所以他们看起来总是忙得团团转,但却乐在其中。问题是他们很难放松心情去享受休闲生活,要他停下来休息,受困扰的情况就像别人遇到难题一般。假如此星座的守护行星水星的位置在天秤座时,就较能悠闲地享受空暇时光。水星虽然也是双子座的守护行星,但处女座的人却不像双子座之轻躁浮夸。</p>
      <p>  或许是因为这星座和「纯洁」脱离不了关系,处女座的人特别对人体的健康和卫生感到兴趣,有许多是素食者,如若不然,也会对日常饮食力行节制。他们天生喜爱整洁并笃信精确,且如同此星座名称所暗示,性喜纯洁,有时甚而会因此至於洁癖之地步,为自己和别人带来困扰,也容易造成人际关系的阻碍。</p>
      <p>  只要纠正上述的缺点,处女座悲天悯人的胸怀和温和的个性在在具备了良朋益友的条件,而他天生有所保留的态度反而增添了几许神秘魅力。</p>
      <p>★心智表现★</p>
      <p>  处女座的分析能力是别星座的人所难以抗衡的,他们遇到棘手的问题时,就会依直觉反应去作钜细靡遗的剖析。针对事情发生的起因、方式和时间作逻辑式的推理,从而寻获重要之线索。他们虽因缺乏整体概念和无法顾全大局以致无法有太高的智慧表现,但以其敏锐的感觉和清晰的逻辑观念,若从事研究方面的工作,则不难有出色的表现,不过尚须留意自己完美主义的倾向和注意细节的毛病。</p>
      <p>  处女座的人容易忧郁,有多愁善感的倾向,他们经常处於战战兢兢的精神状态,生活中总有百般禁忌,长期累积下来,容易有肠胃溃疡的毛病。此星座的人应该设法使自己的精神得到适度的放松;情感能有自由发的管道,如果能将注意力从不断的自责与反省中转移,或许能有较开阔的心境容纳别的事物。</p>
      <p>★爱情★</p>
      <p>  处女座的人具有洁癖的倾向,因而在情感生活上较难和别人建立起亲密的关系。当他陷入情网时,很少直截了当的表达,而是以含蓄的方式,故而恋情看来颇为寂寞。金星的位置关键着此星座的情感,假如太阳和金星的位置同在处女座时,他在情感上的禁忌会更多,同时也更难和旁人分享亲密的关系,不过金星的位置在天秤座时,表达的方式会较为自由,性格上也比较平易近人。</p>
      <p>★事业★</p>
      <p>  由於天生欠缺领导能力,处女座的人很难成为出色的主管,最适合担任幕僚工作,给予领导者合宜而稳当的帮助。基本而言,处女座的人找寻工作的前提是必须有稳定的收入,经济基础的坚实能予其充份的安全感。</p>
      <p>  处女座的女性最适合从事秘书工作——永远是一身整洁高雅的服饰,办公桌也收拾得有条不紊,给人清爽俐落的感觉,对老板交待的事情,更能够处理得条理分明。他们喜欢一成不变的例行公事,因为井然有序是他们所追求的目标。此外,凡是对任何有关分析方面的工作都能胜任愉快。</p>
      <p>  在绘制出生图时,我们可以发现,如果上升星座是处女座,天顶多半会是双子座(处女座和双子座的守护行星皆为水星),而工作上也会倾向双子座所适合的行业。由於水星的影响,处女座的人往往是出色的文学评论家,或是更倾向於双子座喜欢沟通的本质,而从事新闻或播音员的工作。</p>
      <p>★休闲★</p>
      <p>  处女座的人可以从个人嗜好中充分享受乐趣,园艺、散步或骑着脚踏车兜风,对其身心有莫大的裨益。</p>
      <p>★父母★</p>
      <p>  当此星座的母亲,一看到儿女全身弄得脏兮兮地走进她费心打理的整洁房间时,她的洁癖将使她的脾气爆发。幸好处女座的人虽然生性挑剔,却能督促孩子善用课馀的时间,特别是教导他们从琐碎的事情中(例如家事)培养耐性。由於处女座一丝不的习性,子女不易得到亲切的对待,他们很容易因为外表冷漠,而造成和子女之间的隔阂,日常生活中应该格外留意。</p>
      <p>★子女★</p>
      <p>  学校规律的生活和处女座喜欢井然有序的天性正好不谋而合,故处女座的孩子在学校生活中最受老师疼爱,他们并非对所有的纪律都能照单全收(因其生性多疑,对任何不合理的事情都会发出疑问),但是他们很讲理,只要提出的解释合理,则一定遵守,不仅循规蹈矩、成绩优异,而且无论试卷或是作业都能维持得乾乾净净洁,字体也都写得清清秀秀的。</p>
      <p>  课馀时间父母应该鼓励他们从事一些具有创意的艺术活动。女孩可鼓励学习女红,男孩则对工艺有特长。</p>
      <p>★处女座的幸运事物★</p>
      <p>  幸运日礼拜叁</p>
      <p>  幸运宝石红缟玛瑙</p>
      <p>  幸运色灰色 </p>
      <p>  幸运数字4,8</p>
      <p>  幸运地点小城市</p>
</SPAN></SPAN>
</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -