这个网页代码是什么?

来源:百度知道 编辑:UC知道 时间:2024/05/12 20:16:41
大家看下这个代码是什么,就是一点左边那个小箭头,就可以收回去.

我想做个可以向上收的,谁能帮我把代码写出来,谢谢了!

网页如下:
http://bbs.tech.tom.com/bbs.php?forumid=148&threadid=29299&page=1
就是左边中间的黑色小三角.

下面是该网页的代码,changeWin函数是用来收缩页面的,黑色小三角是'Webdings'字体的3和4:
<HTML>
<HEAD>
<TITLE>TOM 论坛</TITLE>
<META http-equiv=content-type content="text/html; charset=gb2312">

<STYLE type=text/css>
.point{position:absolute;background-color:#dddddd;font-size:12px;cursor:hand;}
</STYLE>
<SCRIPT language=javascript>
var ua = window.navigator.userAgent;
var opera = /opera [56789]|opera\/[56789]/i.test(ua);
var ie = !opera && /msie [56789]/i.test(ua);
var moz = !opera && /mozilla\/[56789]/i.test(ua);

function changeWin(o){
if(!ie) return false;
if(parent.forum.cols != "10,*") {
parent.forum.cols = "10,*";
o.innerHTML = "<font face='Webdings' color='#000000'

class='point'>4</font>";
} else {
parent.forum.cols = "131,*";
o.in