我时常扪心而问:“我来到人间走了一遭,可我究竟干了些什么呢?我本来是为了生活而降生的,可我还不曾生活过就将死去。”
gennie 的 伊甸园
     
 

     
    
           
                            
   

 
     
♀News&Comments
 

数据读取中……

 

数据读取中……

 
 

2005-8-30
让鼠标锦上添花

gennie610
12:27 PM


1.小星星满天飞舞

</script></CENTER><DIV id=sDiv0>*</DIV><DIV id=sDiv1>*</DIV><DIV id=sDiv2>*</DIV>

<DIV id=sDiv3>*</DIV><DIV id=sDiv4>*</DIV><DIV id=sDiv5>*</DIV><DIV id=sDiv6>*</DIV><CENTER>

2.彩色点跟踪鼠标效果

<body bgcolor="#000000"><LAYER NAME="a0" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a1" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a2" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a3" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a4" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a5" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a6" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>

<script language="JavaScript">
<!--

if (document.all){
document.write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
for (xy=0;xy<7;xy++)
document.write('<div style="position:relative;width:3px;height:3px;background:#FFFF00;font-size:2px;visibility:visible"></div>')
document.write('</div>')
}

if (document.layers)
{window.captureEvents(Event.MOUSEMOVE);}
var yBase = 200;
var xBase = 200;
var yAmpl = 10;
var yMax = 40;
var step = .2;
var ystep = .5;
var currStep = 0;
var tAmpl=1;
var Xpos = 1;
var Ypos = 1;
var i = 0;
var j = 0;

if (document.all)
{
  function MoveHandler(){
  Xpos = document.body.scrollLeft+event.x;
  Ypos = document.body.scrollTop+event.y;
  }
  document.onmousemove = MoveHandler;
}

else if (document.layers)
{
  function xMoveHandler(evnt){
  Xpos = evnt.pageX;
  Ypos = evnt.pageY;
  }
  window.onMouseMove = xMoveHandler;
}

 

function animateLogo() {
if (document.all)
{
 yBase = window.document.body.offsetHeight/4;
 xBase = window.document.body.offsetWidth/4;
}
else if (document.layers)
{
 yBase = window.innerHeight/4 ;
 xBase = window.innerWidth/4;
}

if (document.all)
{
var totaldivs=document.all.starsDiv.all.length
 for ( i = 0 ; i < totaldivs ; i++ )
 {
var tempdiv=document.all.starsDiv.all[i].style
  tempdiv.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
  tempdiv.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
 }
}

else if (document.layers)
{
 for ( j = 0 ; j < 7 ; j++ )
 {
var templayer="a"+j
  document.layers[templayer].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
  document.layers[templayer].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
 }
}
currStep += step;
setTimeout("animateLogo()", 15);
}
animateLogo();
// -->
</script>

3.跟随鼠标旋转的文字特效

<SCRIPT LANGUAGE="JavaScript">
if (document.all) {
yourLogo = "跟随鼠标的旋转文字 ";
logoFont = "宋体";
logoColor = "000000";
yourLogo = yourLogo.split('');
L = yourLogo.length;
TrigSplit = 360 / L;
Sz = new Array()
logoWidth = 100;
logoHeight = -30;
ypos = 0;
xpos = 0;
step = 0.03;
currStep = 0;
document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < L; i++) {
document.write('<div id="ie" style="position:absolute;top:0px;left:0px;'
+'width:10px;height:10px;font-family:'+logoFont+';font-size:12px;'
+'color:'+logoColor+';text-align:center">'+yourLogo[i]+'</div>');
}
document.write('</div></div>');
function Mouse() {
ypos = event.y;
xpos = event.x - 5;
}
document.onmousemove=Mouse;
function animateLogo() {
outer.style.pixelTop = document.body.scrollTop;
for (i = 0; i < L; i++) {
ie[i].style.top = ypos + logoHeight * Math.sin(currStep + i * TrigSplit * Math.PI / 180);
ie[i].style.left = xpos + logoWidth * Math.cos(currStep + i * TrigSplit * Math.PI / 180);
Sz[i] = ie[i].style.pixelTop - ypos;
if (Sz[i] < 5) Sz[i] = 5;
ie[i].style.fontSize = Sz[i] / 1.7;
}
currStep -= step;
setTimeout('animateLogo()', 20);
}
window.onload = animateLogo;
}
</script>
4.本blog鼠标代码

<SCRIPT language=JavaScript>
<!--
if (document.all){

colours=new Array('ff0000','00ff00','3366ff','ff00ff','ffa500','ffffff','fff000')


amount=colours.length;
YgetDelay=0,XgetDelay=0,Ydelay=0,Xdelay=0,step=0.2,currStep=0,my=0,mx=0;
document.write('<div id="ie" style="position:absolute;top:0;left:0;"><div style="position:relative">');
for (i=0; i < amount; i++)
document.write('<div id="iestars" style="position:absolute;top:0px;left:0px;height:50px;width:50px;font-family:Courier New;font-size:5px;color:'+colours[i]+';padding-top:20px;text-align:center">.</div>');
document.write('</div></div>');
ini=1;
gstep=1;
function iMouse(){
my=event.y;mx=event.x;
}
document.onmousemove=iMouse
function dim(){
ini-=gstep;
dt=setTimeout('dim()',10);
if (ini < 2){
clearTimeout(dt);
glow();
}
}
function glow(){
ini+=gstep;
gt=setTimeout('glow()',10);
if (ini > 14){
clearTimeout(gt);
dim();
}
}
function stars(){
ie.style.top=document.body.scrollTop;
for (i=0; i < amount; i++)
{
var layer=iestars[i].style;
layer.filter='glow(color='+colours[i]+', strength='+ini+')';
layer.top= Ydelay+100*Math.sin((5*Math.sin((currStep-15.99)/10))+i*70)*Math.sin((currStep)/10)*Math.cos((currStep+i*25)/10);
layer.left=Xdelay+180*Math.cos((5*Math.sin((currStep-15.99)/10))+i*70)*Math.sin((currStep)/10)*Math.cos((currStep+i*25)/10);
}
currStep+=step;
}
function delay(){
Ydelay = YgetDelay+=(my-YgetDelay)*1/20;
Xdelay = XgetDelay+=(mx-XgetDelay)*1/20;
stars();
setTimeout('delay()',10);
}
delay();
glow();
}
//-->
</SCRIPT>

<SCRIPT language=javascript>
function subsearch()
{
with(document.searchbar)
{key.value=key1.value+" site:"+key2.value};
}
</SCRIPT>

loading...

2005-8-30
可爱索材大集合(美图篇)

gennie610
10:50 AM


image image

image image

image 

image 

image 

image 

image image

loading...

2005-8-29
可爱素材大集合(分割线篇)

gennie610
22:16 PM


image image 

image 

image 

image 

image

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image  

image  image image image

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image 

image

image 

image 

image 

image image image image

image 

 

 

 

 

 

 

loading...

2005-8-29
可爱素材大集合(公告版篇)

gennie610
21:43 PM


image image

 image image

 

image

image image

image image

image

 image

image 

image 

image 

image image

image 

loading...

2005-8-29
圖層框框製作附加卷軸

gennie610
21:18 PM


 FrontPage XP (2002) :

  1. 首先開啟你的 FrontPage XP (2002) ....選擇螢幕下方分頁之 HTML 模式

  2. 在<body></body>之間打入<div></div>


  3. .在div上方按右鍵選標籤內容



  4. 出現修改樣式視窗,先在格式選擇框線
    出現框線及網底視窗....跟Word一模一樣...
    可以在網底選擇背景色彩
    設定完畢後按確定




  5. 回到修改樣式視窗 ,在格式選擇位置調整寬和高



  6. 出現位置視窗,建議也都先輸入100(如果你清楚相關流程不再此限)



  7. 選擇一般預覽模式看看有沒有出現(框框)




  8. 回到HTML模式,在圖層(框框)裡打入文字 ,要加圖片的也請從網站複製貼上去
    注意:此時雖然打入文字..如果超過 ,框框會自動變大...但其實是不變的..可以由預覽模式求證。
    這時看到做好樣式的框框....此時就可以複製到你的MSN SPACES編輯裡打入內容 ............

          要有捲軸請繼續往下看....如果不要請跳第11步驟



  1. 要加捲軸請在HTML模式
    看到<div style=" 後方再加上 overflow:scroll; 如圖所示




  2. 再選擇預覽模式看看有沒有出現....的確出現捲軸了.....
    如果要捲軸變化請接續FrontPage2003的第12步驟 或 按 Alt+c 直達 ....看完再回來
    如果不要請繼續




  3. 一般模式 先按 Ctrl+A 全選 在按 Crtl+C 複製 



  4. 回到“ 发表日志页面UBB编辑 ”按貼上(Crtl+V) ....
    注意如果有隱藏任何一方之捲軸..將無法在此直接編輯,做最後修改的動作
    貼完之後按 預覽網誌內容 看看有沒有出現....之後確認就可以送出 成功了...^^

loading...

2005-8-29
文字特效

gennie610
20:54 PM


1。HTML:

<font style="FILTER: glow(color=#FF0000,strength=3); HEIGHT: 1px;" face="標楷體" color="#ffffff" size="4">什麼顏色最好看?</font>
<br>
<font style="FILTER: glow(color=#FF0080,strength=3); HEIGHT: 1px;" face="標楷體" color="#ffffff" size="4">什麼顏色最好看?</font>
<br>
<font style="FILTER: glow(color=#FF8000,strength=3); HEIGHT: 1px;" face="標楷體" color="#ffffff" size="4">什麼顏色最好看?</font>
<br>
<font style="FILTER: glow(color=#008080,strength=3); HEIGHT: 1px;" face="標楷體" color="#ffffff" size="4">什麼顏色最好看?</font>
<br>
<font style="FILTER: glow(color=#008000,strength=3); HEIGHT: 1px;" face="標楷體" color="#ffffff" size="4">什麼顏色最好看?</font>
<br>
<font style="FILTER: glow(color=#0000FF,strength=3); HEIGHT: 1px;" face="標楷體" color="#ffffff" size="4">什麼顏色最好看?</font>
<br>
<font style="FILTER: glow(color=#8000FF,strength=3); HEIGHT: 1px;" face="標楷體" color="#ffffff" size="4">什麼顏色最好看?</font>
<br>
<font style="FILTER: glow(color=#000000,strength=3); HEIGHT: 1px;" face="標楷體" color="#ffffff" size="4">什麼顏色最好看?</font>

 

結果:

什麼顏色最好看?
什麼顏色最好看?
什麼顏色最好看?
什麼顏色最好看?
什麼顏色最好看?
什麼顏色最好看?
什麼顏色最好看?
什麼顏色最好看?

2。HTML:
<font style="FILTER:Dropshadow(color=#cccccc,offX=3,offY=3); height=1px">

像不像陰影文字<front>
結果:


像不像陰影文字

3。HTML:
<div style=" background-color:#CCCCCC;width:151px;height:19px">
<font style="FILTER:Dropshadow(color=#FFFFFF,offX=1,offY=1); height=15pt;"


color="#000000">有人說像雕刻文字</font></div>
結果:

有人說像雕刻文字
loading...

2005-8-29
大整修

gennie610
20:02 PM


今天对blog做了大整修,鼠标改成花样,
版面也改了,还有字都变成粉嘟嘟的了,呵呵,花了一个下午,不过看到成品以后觉得再累也值得

image 

 

IF YOU CAN  DO, YOU TRY image

image 

loading...

2005-8-17
^_^~

gennie610
19:50 PM


嘻嘻,小妮子我刚买了摄像头(130万像素,挺清楚的,才80元,还算物有所值),这个愿望可是从去年夏天到拖到现在才去实现,所以不免心痒加手痒,就臭屁的拍了些照片(拍的不好还请见谅,纯属家庭影集,没有特别华丽背景),放在我的相册里,大家有空去看看,捧捧场咯,嘻嘻~image
loading...

2005-8-5
乱扯—小妮子的肺腑之言

gennie610
21:31 PM


        看到老公的网页^_^,不免心里有些痒痒(其实是手最痒),QQ的q-zone可没有这么大的发挥空间,不能再满足我小妮子的胃口了,所以要来blog动刀,可是看见满满的html编辑,头晕啊~,只好去啃一下再回来了(想把它弄得越花越好),所以现在没啥东东,简单至极(不过有一句话说朴素也是一种美 ),那就请各位看官慢慢等待,小妮子我保证不会让大家等的花儿都谢了(最多头发都白了),^_^
loading...

♀Links
数据读取中……
数据读取中……
数据读取中……
数据读取中……

♀About
 
欢迎光临!
你是第数据读取中……位访客

欢迎交换连接,推荐使用左边我的logo
本站域名:
http://gennie610.blogone.net
网名:gennie扬
网龄:20
性别:女
爱好:上网,看书
邮箱:345758815@qq.com
Q Q:345758815