如何在html页面上随着鼠标的位置显示浮动层图片或别的东东?(附代码)

改了一下网上的一个例子,使之更好用了。粗题字是精华!!!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>客运站查询</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="style_sbtc.css" rel="stylesheet" type="text/css">
</head>
<body topmargin="0">
<div id=overDiv style="LEFT: 20px; POSITION: absolute; Z-INDEX: 1; visibility: hidden; top: 64px" 42px;37px 14px;top:2px></div>
<script language=JavaScript>

// Main background color (the large area)
// Usually a bright color (white, yellow etc)
if (typeof fcolor == 'undefined') { var fcolor = "#edf5fe";}

// Border color and color of caption
// Usually a dark color (black, brown etc)
if (typeof backcolor == 'undefined') { var backcolor = "#2a83a1";}


// Text color
// Usually a dark color
if (typeof textcolor == 'undefined') { var textcolor = "#13214a";}

// Color of the caption text
// Usually a bright color
if (typeof capcolor == 'undefined') { var capcolor = "#ffffff";}

// Color of "Close" when using Sticky
// Usually a semi-bright color
if (typeof closecolor == 'undefined') { var closecolor = "#d0e6fd";}


// Width of the popups in pixels
// 100-300 pixels is typical
if (typeof width == 'undefined') { var width = "220";}

// How thick the border should be in pixels
// 1-3 pixels is typical
if (typeof border == 'undefined') { var border = "1";}


// How many pixels to the right/left of the cursor to show the popup
// Values between 3 and 12 are best
if (typeof offsetx == 'undefined') { var offsetx = 10;}

// How many pixels to the below the cursor to show the popup
// Values between 3 and 12 are best
if (typeof offsety == 'undefined') { var offsety = 10;}


// END CONFIGURATION

ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

// Microsoft Stupidity Check.
if (ie4) {
if (navigator.userAgent.indexOf('MSIE 5')>0) {
ie5 = true;
} else {
ie5 = false; }
} else {
ie5 = false;
}

var x = 0;
var y = 0;
var snow = 0;
var sw = 0;
var cnt = 0;
var dir = 1;
var tr = 1;
if ( (ns4) || (ie4) ) {
if (ns4) over = document.overDiv
if (ie4) over = overDiv.style
document.onmousemove = mouseMove
if (ns4) document.captureEvents(Event.MOUSEMOVE)
}

// Public functions to be used on pages.

// Simple popup right
function drs(text) {
dts(1,text);
}

// Caption popup right
function drc(text, title) {
dtc(1,text,title);
}

// Sticky caption right
function src(text,title) {
stc(1,text,title);
}

// Simple popup left
function dls(text) {
dts(0,text);
}

// Caption popup left
function dlc(text, title) {
dtc(0,text,title);
}

// Sticky caption left
function slc(text,title) {
stc(0,text,title);
}

// Simple popup center
function dcs(text) {
dts(2,text);
}

// Caption popup center
function dcc(text, title) {
dtc(2,text,title);
}

// Sticky caption center
function scc(text,title) {
stc(2,text,title);
}

// Clears popups if appropriate
function nd() {
if ( cnt >= 1 ) { sw = 0 };
if ( (ns4) || (ie4) ) {
if ( sw == 0 ) {
snow = 0;
hideObject(over);
} else {
cnt++;
}
}
}

// Non public functions. These are called by other functions etc.

// Simple popup
function dts(d,text) {
txt = "<TABLE WIDTH="+width+" BORDER=0 CELLPADDING="+border+" CELLSPACING=0 BGCOLOR=/""+backcolor+"/"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=/""+fcolor+"/"><TR><TD><FONT FACE=/"Arial,Helvetica/" COLOR=/""+textcolor+"/" SIZE=/"-2/">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>"
layerWrite(txt);
dir = d;
disp();
}

// Caption popup
function dtc(d,text, title) {
txt = "<TABLE WIDTH="+width+" BORDER=0 CELLPADDING="+border+" CELLSPACING=0 BGCOLOR=/""+backcolor+"/"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD><SPAN ID=/"PTT/"><FONT COLOR=/""+capcolor+"/">"+title+"</FONT></SPAN></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=/""+fcolor+"/"><TR><TD><SPAN ID=/"PST/"><FONT COLOR=/""+textcolor+"/">"+text+"</FONT><SPAN></TD></TR></TABLE></TD></TR></TABLE>"
layerWrite(txt);
dir = d;

disp();
}

// Sticky
function stc(d,text, title) {
sw = 1;
cnt = 0;
txt = "<TABLE WIDTH="+width+" BORDER=0 CELLPADDING="+border+" CELLSPACING=0 BGCOLOR=/""+backcolor+"/"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD><SPAN ID=/"PTT/"><FONT COLOR=/""+capcolor+"/">"+title+"</FONT></SPAN></TD><TD ALIGN=RIGHT><A HREF=/"//" onMouseOver=/"cClick();/" ID=/"PCL/"><FONT COLOR=/""+closecolor+"/">Close</FONT></A></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=/""+fcolor+"/"><TR><TD><SPAN ID=/"PST/"><FONT COLOR=/""+textcolor+"/">"+text+"</FONT><SPAN></TD></TR></TABLE></TD></TR></TABLE>"
layerWrite(txt);
dir = d;
disp();
snow = 0;
}

// Common calls
function disp() {
if ( (ns4) || (ie4) ) {
if (snow == 0) {
if (dir == 2) { // Center
moveTo(over,x+offsetx-(width/2),y);
}
if (dir == 1) { // Right
    if (x>document.all['overDiv'].offsetWidth)
    {
        x=x-document.all['overDiv'].offsetWidth-offsetx;
    }
    else
    {
        if (document.documentElement.clientWidth -x > document.all['overDiv'].offsetWidth)
        {
            x=x+offsetx;
        }
        else
        {
           x=x-document.all['overDiv'].offsetWidth* (x/document.documentElement.clientWidth);
        }
    }

    if (y>document.all['overDiv'].offsetHeight)
    {
        y=y-document.all['overDiv'].offsetHeight-offsetx;
    }
    else
    {
        if (document.documentElement.clientHeight -y > document.all['overDiv'].offsetHeight)
        {
            y=y+offsetx;
        }
        else
        {
           //y=y-document.all['overDiv'].offsetHeight* (y/document.documentElement.clientHeight) ;
    if (document.documentElement.clientHeight -y > y)
  y=y+offsetx;  

    else
  y=y-document.all['overDiv'].offsetHeight-offsetx;  
        }
    }

    x=x+document.documentElement.scrollLeft;
    y=y+document.documentElement.scrollTop;
   
    moveTo(over,x,y);
}
if (dir == 0) { // Left

   
   
    moveTo(over,x-offsetx-width,y);
}
showObject(over);
snow = 1;
}
}
// Here you can make the text goto the statusbar.
}

// Moves the layer
function mouseMove(e) {
if (ns4) {x=e.pageX; y=e.pageY;}
if (ie4) {x=event.x; y=event.y;}
if (ie5) {x=event.x+document.body.scrollLeft; y=(document.body.scrollTop+200);}
if (snow) {
if (dir == 2) { // Center
moveTo(over,x+offsetx-(width/2),y);
}
if (dir == 1) { // Right

if (x>document.all['overDiv'].offsetWidth)
    {
        x=x-document.all['overDiv'].offsetWidth-offsetx;
    }
    else
    {
        if (document.documentElement.clientWidth -x > document.all['overDiv'].offsetWidth)
        {
            x=x+offsetx;
        }
        else
        {
           x=x-document.all['overDiv'].offsetWidth* (x/document.documentElement.clientWidth);
        }
    }

    if (y>document.all['overDiv'].offsetHeight)
    {
        y=y-document.all['overDiv'].offsetHeight-offsetx;
    }
    else
    {
        if (document.documentElement.clientHeight -y > document.all['overDiv'].offsetHeight)
        {
            y=y+offsetx;
        }
        else
        {
           //y=y-document.all['overDiv'].offsetHeight* (y/document.documentElement.clientHeight) ;
    if (document.documentElement.clientHeight -y > y)
  y=y+offsetx;  

    else
  y=y-document.all['overDiv'].offsetHeight-offsetx; 
        }
    }

    x=x+document.documentElement.scrollLeft;
    y=y+document.documentElement.scrollTop;
    moveTo(over,x,y);
}
if (dir == 0) { // Left
moveTo(over,x-offsetx-width,y);
}
}
}

// The Close onMouseOver function for Sticky
function cClick() {
hideObject(over);
sw=0;
}

// Writes to a layer
function layerWrite(txt) {
if (ns4) {
var lyr = document.overDiv.document
lyr.write(txt)
lyr.close()
}
else if (ie4) document.all["overDiv"].innerHTML = txt
//if (tr) { trk(); }
}

// Make an object visible
function showObject(obj) {
if (ns4) obj.visibility = "show"
else if (ie4) obj.visibility = "visible"
}

// Hides an object
function hideObject(obj) {
if (ns4) obj.visibility = "hide"
else if (ie4) obj.visibility = "hidden"
}

// Move a layer
function moveTo(obj,xL,yL) {
obj.left = xL
obj.top = yL
}

//function trk() {
// if ( (ns4) || (ie4) ) {
// nt=new Image(32,32); nt.src="http://www.nedstat.nl/cgi-bin/nedstat.gif?name=ol2t";
// bt=new Image(1,1); bt.src="http://www.bosrup.com/web/overlib/o2/tr.gif";
// refnd=new Image(1,1); refnd.src="http://www.nedstat.nl/cgi-bin/referstat.gif?name=ol2t&refer="+escape(top.document.referrer);
//
// }
// tr = 0;
//}
</script>    <!-- #include file="top.asp" -->
<table width="670" height="198" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="11">&nbsp;</td>
    <td width="188" valign="top"><table width="188" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><img src="images/btn_home0.gif" width="181" height="23" border="0" usemap="#Map8"></td>
        </tr>
        <tr>
          <td height="5"><img src="images/000.gif" width="1" height="1"></td>
        </tr>
        <tr>
          <td><img src="images/btn_banxian0.gif" width="181" height="21" border="0" usemap="#Map9"></td>
        </tr>
        <tr>
          <td height="5"><img src="images/000.gif" width="1" height="1"></td>
        </tr>
        <tr>
          <td><img src="images/btn_dingdan0.gif" width="181" height="21" border="0" usemap="#Map2"></td>
        </tr>
        <tr>
          <td height="5"><img src="images/000.gif" width="1" height="1"></td>
        </tr>
        <tr>
          <td><img src="images/btn_keyunzhan1.gif" width="181" height="21" border="0"></td>
        </tr>
        <tr>
          <td height="5"><img src="images/000.gif" width="1" height="1"></td>
        </tr>
        <tr>
          <td><img src="images/btn_faq0.gif" width="181" height="21" border="0" usemap="#Map5"></td>
        </tr>
        <tr>
          <td height="5"><img src="images/000.gif" width="1" height="1"></td>
        </tr>
        <tr>
          <td><img src="images/btn_daili0.gif" width="181" height="21" border="0" usemap="#Map7"></td>
        </tr>
        <tr>
          <td height="5"><img src="images/000.gif" width="1" height="1"></td>
        </tr>
        <tr>
          <td><img src="images/btn_fankui0.gif" width="181" height="21" border="0" usemap="#Map5">
          </td>
        </tr>
        <tr>
          <td height="5"><img src="images/000.gif" width="1" height="1"></td>
        </tr>
        <tr>
          <td><img src="images/btn_guanyu0.gif" width="181" height="21" border="0" usemap="#Map5"></td>
        </tr>
      </table>
     
    </td>
    <td><img src="images/pic_keyunzhan.jpg" width="471" height="198"></td>
  </tr>
</table>
<table width="670" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td height="7"><img src="images/000.gif" width="1" height="1"></td>
  </tr>
</table>
<table width="670" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="11">&nbsp;</td>
    <td width="659" valign="top"><table width="659" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><img src="images/title_keyunzhan.gif" width="659" height="31"></td>
        </tr>
        <tr>
          <td background="images/bg_fr_all.gif"><table width="640" border="0" align="center" cellpadding="0" cellspacing="0">
              <tr>
                <td colspan="2"><a name="info"></a></td>
              </tr>
              <tr>
                <td colspan="2" align="center"><strong><span id="map_list">各客运站地址</span></strong></td>
              </tr>
              <tr>
                <td colspan="2">&nbsp;</td>
              </tr>
              <tr>
                <td><span id="map_list"> </span> <ul>
                    <li> <font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_zhongxinglu.jpg>','<strong>客运总站:</strong>');return true;" onMouseOut="nd();return true;"><strong>客运总站</strong></a></font><br>
                      全称:上海长途汽车客运总站有限公司<br>
                      地址:中兴路1662号(交通路) <br>
                      直线电话:66299116<br>
                      上班时间:5:00-23:00</li>
                    <li> <a href="#" onMouseOver="drc('<img src=images/map_zsbl1015.jpg>','<strong>巴士沪太:</strong>');return true;" onMouseOut="nd();return true;"><strong><font color="#2a83a1">巴士沪太</font></strong></a><br>
                      全称:上海巴士高速客运有限公司沪太站 <br>
                      地址:中山北路1015号(沪太站) <br>
                      直线电话:56528400<br>
                      上班时间:5:00-20:30</li>
                    <li> <font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_gongxinglu.jpg>','<strong>长途北区:</strong>');return true;" onMouseOut="nd();return true;"><strong>长途北区</strong></a></font><br>
                      全称:上海市长途汽车运输公司北区客运站<br>
                      地址:公兴路88号(中兴路) <br>
                      直线电话:56638631<br>
                      上班时间:8:30-17:00</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_shnanzhan.jpg>','<strong>徐汇 上海南站:</strong>');return true;" onMouseOut="nd();return true;"><strong>徐汇 上海南站</strong></a></font><br>
                      全称:上海南站长途客运有限公司<br>
                      地址:石龙路666号(柳州南路) <br>
                      直线电话:54353535<br>
                      上班时间:6:00-20:30</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_hengfenglu258.jpg>','<strong>交运高速:</strong>');return true;" onMouseOut="nd();return true;"><strong>交运高速</strong></a></font><br>
                      全称:上海交运高速客运站有限公司<br>
                      地址:恒丰路258号(汉中路) <br>
                      直线电话:63175757<br>
                      上班时间:5:30-20:30</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_wuzhongdonglu.jpg>','<strong>三汽西区:</strong>');return true;" onMouseOut="nd();return true;"><strong>三汽西区</strong></a></font><br>
                      全称:上海大众三汽公共交通有限公司西区汽车站<br>
                      地址:吴中东路555号(中山西路) <br>
                      直线电话:64645587<br>
                      上班时间:5:40-16:00</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_wuzhonglu.jpg>','<strong>吴中站:</strong>');return true;" onMouseOut="nd();return true;"><strong>吴中站</strong></a></font><br>
                      全称:上海吴中长途汽车站<br>
                      地址:吴中路16号(中山西路宋园路) <br>
                      直线电话:64648888<br>
                      上班时间:6:00-20:00</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_zsbl806.jpg>','<strong>中山交通:</strong>');return true;" onMouseOut="nd();return true;"><strong>中山交通</strong></a></font><br>
                      全称:上海中山交通客运有限公司<br>
                      地址:中山北路806号(共和新路) <br>
                      直线电话:56557926<br>
                      上班时间:5:00-18:00</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_zhongninglu.jpg>','<strong>武宁长途:</strong>');return true;" onMouseOut="nd();return true;"><strong>武宁长途</strong></a></font><br>
                      全称:上海武宁长途汽车站<br>
                      地址:中宁路230号(武宁路) <br>
                      直线电话:62055923 62050613<br>
                      上班时间:5:00-18:30</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_guoweilu.jpg>','<strong>五角场:</strong>');return true;" onMouseOut="nd();return true;"><strong>五角场</strong></a></font><br>
                      全称:上海五角场长途汽车客运有限公司<br>
                      地址:国伟路456号(闸殷路) <br>
                      直线电话:55239006<br>
                      上班时间:5:00-17:00</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_taihelu.jpg>','<strong>吴淞长途:</strong>');return true;" onMouseOut="nd();return true;"><strong>吴淞长途</strong></a></font><br>
                      全称:上海吴淞口长途汽车客运服务有限公司<br>
                      地址:泰和路5号(化成路) <br>
                      直线电话:56575016<br>
                      上班时间:5:40-16:45</li>
                  </ul>
                  </td>
                <td valign="top"><ul>
                    <li> <font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_dongdaminglu.jpg>','<strong>沪东客站:</strong>');return true;" onMouseOut="nd();return true;"><strong>沪东客站</strong></a></font><br>
                      全称:上海交运高速客运有限公司东大名路站<br>
                      地址:东大名路959号(丹徒路公平路) <br>
                      直线电话:65416002 65415869<br>
                      上班时间:6:00-19:00</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_hengfenglu783.jpg>','<strong>沪铁长途:</strong>');return true;" onMouseOut="nd();return true;"><strong>沪铁长途</strong></a></font><br>
                      全称:上海沪铁长途客运有限责任公司 <br>
                      地址:恒丰路783号   <br>
                      直线电话:51005131 63535375<br>
                      上班时间:5:30-18:00</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_taopulu.jpg>','<strong>交通大众:</strong>');return true;" onMouseOut="nd();return true;"><strong>交通大众</strong></a></font><br>
                      全称:上海交通大众客运有限责任公司<br>
                      地址:桃浦路168号(桃浦东路) <br>
                      直线电话:52858818<br>
                      上班时间:5:15-17:30</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_hengfenglu710.jpg>','<strong>太平洋:</strong>');return true;" onMouseOut="nd();return true;"><strong>太平洋</strong></a></font><br>
                      全称:上海锦江太平洋客运服务有限公司<br>
                      地址:恒丰路710号   <br>
                      直线电话:63179821 63170440<br>
                      上班时间:6:00-23:00</li>
                    <li> <font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_waimalu.jpg>','<strong>南浦大桥:</strong>');return true;" onMouseOut="nd();return true;"><strong>南浦大桥</strong></a></font><br>
                      全称:上海南浦大桥长途旅游客运站有限公司<br>
                      地址:外马路1588号(南浦大桥) <br>
                      直线电话:63765128<br>
                      上班时间:5:30-17:30</li>
                    <li> <font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_pudongnanlu.jpg>','<strong>白莲泾站:</strong>');return true;" onMouseOut="nd();return true;"><strong>白莲泾站</strong></a></font><br>
                      全称:上海浦东交通巴士长途客运有限公司白莲泾站<br>
                      地址:浦东南路3843号(高科西路) <br>
                      直线电话:962168 58836840 58802983<br>
                      上班时间:5:00-19:00</li>
                    <li> <font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_huyigonglu.jpg>','<strong>嘉定客运:</strong>');return true;" onMouseOut="nd();return true;"><strong>嘉定客运</strong></a></font><br>
                      全称:上海嘉定汽车客运场站管理有限公司<br>
                      地址:沪宜公路3205号(福海路) <br>
                      直线电话:59162764<br>
                      上班时间:6:00-17:20</li>
                    <li> <font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_miaojinglu.jpg>','<strong>强生川沙:</strong>');return true;" onMouseOut="nd();return true;"><strong>强生川沙</strong></a></font><br>
                      全称:上海强生长途客运有限公司川沙汽车站 <br>
                      地址:妙境路998号(川周路) <br>
                      直线电话:50921565 50921537<br>
                      上班时间:4:30-16:30</li>
                    <li> <font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_renminnanlu.jpg>','<strong>松江旅行社:</strong>');return true;" onMouseOut="nd();return true;"><strong>松江旅行社</strong></a></font><br>
                      全称:上海松江旅行社有限公司 <br>
                      地址:人民南路31号(中山中路) <br>
                      直线电话:57819611<br>
                      上班时间:4:30-21:00</li>
                    <li><font color="#2a83a1"><a href="#" onMouseOver="drc('<img src=images/map_nanqiaozhen01.jpg>','<strong>浦江汽运:</strong>');return true;" onMouseOut="nd();return true;"><strong>浦江汽运</strong></a></font><br>
                      全称:上海浦江汽车运输有限公司<br>
                      地址:奉贤区南桥镇沪杭公路2198号 <br>
                      直线电话:67191917<br>
                      上班时间:5:15-16:30</li>
                  </ul>
                  </td>
              </tr>
            </table></td>
        </tr>
        <tr>
          <td height="12" valign="top"><img src="images/fr_bot_all.gif" width="659" height="12"></td>
        </tr>
      </table></td>
  </tr>
</table>
<table width="670" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td height="7"><img src="images/000.gif" width="1" height="1"></td>
  </tr>
</table>    <!-- #include file="footer.asp" -->
<map name="Map9">
  <area shape="rect" coords="61,4,144,17" href="order.asp">
</map>
<map name="Map8">
  <area shape="rect" coords="61,6,85,20" href="index.asp">
</map>
<map name="Map5">
  <area shape="rect" coords="61,5,109,17" href="fankui.asp">
</map>
<map name="Map7">
  <area shape="rect" coords="62,5,110,17" href="daili.asp">
</map>
<map name="Map">
  <area shape="rect" coords="64,25,76,37" href="index.asp">
  <area shape="rect" coords="94,24,106,38" href="">
</map>
<map name="Map2">
  <area shape="rect" coords="60,4,130,17" href="dingdan.asp">
</map>
</body>
</html> 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值