2010年4月16日星期五

layout

Overlay:
Advantage
  • Size of TV window is the same as regular TV
  • Content feels more integrated into the show
  • Close proximity of TV and content may facilitate divided attention
  • Close proximity of TV and content may enhance memory for show



Embedded :
Advantage
  • Easy to separate TV and content when viewing
  • Easy to focus on content or watch show
  • Separation of content and TV may facilitate memory
  • Separation of content from TV may facilitate divided attention

2008年5月26日星期一

Flv and FLV player not working on FTP

oh my............

FLV can not work in UTS ftp.

it waste me 2hours to find it out

....................not GOOD

2008年5月15日星期四

about img

<img src="http://dhzminimoto.googlepages.com/3.jpg" alt="Click the images for bigger pictures" width="260" height="170" align="absmiddle" onclick="MM_openBrWindow('http://dhzminimoto.googlepages.com/3.jpg','','width=1024,height=768')" style="cursor:hand" />

when the mouse moving over the picture the Alt=”click the images for bigger pictures” will show this text.

And align="absmiddle" onclick="MM_openBrWindow('http://dhzminimoto.googlepages.com/3.jpg','','width=1024,height=768')" will give a popup

style="cursor:hand" will give a hand icon when mouse moving over, but it won’t work in firefox
I will find out why

2008年4月25日星期五

inside jump

Sometimes, the jumping in same page is also very useful in navigation
If you right
<A HREF="#ABC">XYZ</A>
Then you click the XYZ it will jump to
<A NAME="ABC"> </A>
This is quite good when you have a long page, also you can use jump and save user's time

2008年4月14日星期一

CSS widescreen

now the widescreen is quite pop, so the pages maybe quit good in 1024*768 , but then it got problem in 1280*800. i found 2 major code to fix it(it takes me more than 1 hour, my stupid head)

first identify you body width

then the margin.

body
{
font-family: Verdana, serif;
font-size: 12px;
background-color: #000;
color: #fff;
width:960px;
margin:0px auto 0px auto;
}

if you delete the "width:960;", that will be a different story.

2008年3月23日星期日

Php

i found a PHP code "yourIP"

<?php
if (getenv("HTTP_X_FORWARDED_FOR"))
$from_ip = getenv("HTTP_X_FORWARDED_FOR");
else
$from_ip = getenv("REMOTE_ADDR");

print " Your IP:$from_ip ";
?>

but it won't work on UTS FTP. anyone have an idea?

2008年3月15日星期六

about Dreamweaver layout or something

i found some very nice style in Google pager creator

like this one.
http://solidsnake.1999.googlepages.com/testing

but when i use the Dreamweaver, it won't works

http://solidsnake.1999.googlepages.com/test.html

as you can see the roling bars are different and Test part is locked can not roll

what's wrong with this one..............