网络学院

w3pop.com :: 网络学院 :: WEB设计综合 :: 链接效果

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

WEB设计综合
HTML基础
连接基础
图像边框
HTML基本原则
基于浏览器类型实..
超链接效果
透明 IFrames
IFrames 简介
开启DW中的无效行..
框架中的“target..
链接效果
定义滚动条样式
指针样式
IP阻止
除去打印脚本
自动刷新、转向
Meta 标签
CSS 常用布局
去掉链接中的下划..
关闭IE中探出的图..

链接效果


作者:Lindsay Coome 翻译/整理:w3pop.com 发布:2007-05-19 浏览:11933 :: ::

Do you want links that have a cool pixel effect on mouseover? Copy the code below into the <head> of your document. You can change the colors to whatever you want.

你希望当鼠标经过链接时展现一个非常酷的链接效果吗?将下面的代码复制到文档的<head>标签中,你可以任意地改变鼠标经过链接的颜色。

<style>
<!--
A{color:#000000;text-decoration:none;cursor:default;
behavior:url(pixel.htc);
filter:progid:dximagetransform.microsoft.pixelate(duration=.4,
maxSquare=10, enabled=false); height: 0px; font-weight:bold }
A:link{color:#000000; text-decoration:none; font-weight:bold }
A:visited{color:#000000;text-decoration:none;font-weight:none;
font-weight:bold }
A:hover{ text-decoration: none; color:ff9900;cursor:default
font-weight:bold }
-->
</style>

评论 (0) All