网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网页制作 > CSS
网页制作:Dreamweaver教程,FrontPages教程,Javascript教程,HTML教程,CSS教程,心得技巧,DHTML教程,网页特效,Discuz!论坛
本月文章推荐
.Css中的filter常用滤镜属性及语句.
.css技巧:经典常用CSS使用技巧几则.
.发现CSS控件的好处.
.在XHTML文档中合适的使用CSS和Ja.
.css应用:单击table,使点击的行.
.css实现热点(hotspot,地图提示.
.IE下div边框显示有残缺.
.CSS缩写语法总括.
.Firefox CSS私有属性备忘记录.
.XHTML+CSS兼容性解决的五个方案.
.用css使单行超出指定宽度的内容切.
.拒绝单调 让网页超链接拥有多姿多.
.网页制作中CSS样式表的十个技巧.
.对CSS类及id的规范化命名.
.CSS让你的IE浏览器崩溃.
.锦囊妙计 CSS实现样式布局22招.
.revealTrans滤镜制作超弦图片的播.
.巧用CSS制作特效艺术字(7例).
.制作网页时手写CSS应该注意的一点.
.全面了解CSS内置颜色(color)值.

CSS+js放大镜

发表日期:2008-10-6


<head>
    <title>CSS Fisheye</title>
    <style type="text/css">
    span {font-size: x-small}
    </style>
    <script language="JavaScript" type="text/javascript">
    <!--
      function convertPreBlocks() {}
var regular = "x-small";
function bigger(thing){
    thing.style.fontSize = "large";
   
    siblingElement = thing.previousSibling;
    while(siblingElement) {
        if(siblingElement.tagName=="SPAN") {
            siblingElement.style.fontSize = "medium";
            break;
        }
        siblingElement = siblingElement.previousSibling;
    }
    siblingElement = thing.nextSibling;
    while(siblingElement) {
        if(siblingElement.tagName=="SPAN") {
            siblingElement.style.fontSize = "medium";
            break;
        }
        siblingElement = siblingElement.nextSibling;
    }
}
function normal(thing){
    thing.style.fontSize = regular;
    siblingElement = thing.previousSibling;
    while(siblingElement) {
        if(siblingElement.tagName=="SPAN") {
            siblingElement.style.fontSize = regular;
            break;
        }
        siblingElement = siblingElement.previousSibling;
    }
    siblingElement = thing.nextSibling;
    while(siblingElement) {
        if(siblingElement.tagName=="SPAN") {
            siblingElement.style.fontSize = regular;
            break;
        }
        siblingElement = siblingElement.nextSibling;
    }
}
    // -->
    </script>
</head>
<body>
<h1>CSS Fisheye</h1>
<p>Run your mouse over the text below to see the effect. It's implemented using
CSS and Javascript. I got the idea from this <a href="http://www.samuelwan.com/downloads/com.samuelwan.eidt/fisheyemenu/FisheyeMenuDemo.html">fisheye
demo</a>, which uses the effect for menus, but is implemented using Flash. Laur
at <a href="http://www.grapefruitdesign.com/">Grapefruit Designs</a> pointed
to the same technique implemented as a Java applet at <a href="http://www.cs.umd.edu/hcil/fisheyemenu/fisheyemenu-demo.shtml">HCIL,
Univ. of Maryland</a>, and suggested that the idea had probably been around
since the 1960's. It also seems that Ted Nelson had described this and similar
techniques ("<a href="http://xanadu.com/zigzag/fw99/billowing.html">billowing
and undulating text</a>") in relation to his Xanadu project back in 1999.</p>
<p>My <a href="fisheye-old.html">earlier version</a> only worked on Internet Explorer,
but the version here has been fixed for other browsers by <a href="http://www.seairth.com/blog">Seairth
Jacobs</a>. Also the previous version used <a href=...> to mark the lines,
the current version uses <span> <i>("for no particular reason")</i>. </p>
<p>
<span onmouseover="bigger(this)" onmouseout="normal(this)">Tiger, tiger, burning
bright,</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">In the forest of
the night,</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">What immortal hand
or eye</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">Could frame thy fearful
symmetry?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">In what distant deeps
or skies</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">Burnt the fire of
thine eyes?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">On what wings dare
he aspire?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">What the hand dare
seize the fire?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">And what shoulder,
and what art,</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">Could twist the sinews
of thy heart?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">When thy heart began
to beat,</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">What dread hand forged
thy dread feet?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">What the hammer?
What the chain?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">In what furnace was
thy brain?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">What the anvil? What
dread grasp</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">Dared its deadly
terrors clasp?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">When the stars threw
down their spears</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">And watered heaven
with their tears,</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">Did He smile his
work to see?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">Did He who made the
lamb make thee?</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">Tiger, tiger, on
the mat,</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">You're nothing but
a pussy cat,</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">But damn your eyes
and rue the day!</span><br/>
<span onmouseover="bigger(this)" onmouseout="normal(this)">I have to clean your
litter tray.</span> </p>
<p><i>with apologies to William Blake</i></p>
<p><a href="http://66.70.191.189/cgi-bin/mt-comments.cgi?entry_id=1971">Comments
appreciated</a></p>
</body>
上一篇:外部引用CSS中 link与@import的区别 人气:740
下一篇:根据时间段自动切换CSS风格 人气:824
浏览全部CSS的内容 Dreamweaver插件下载 网页广告代码 祝你圣诞节快乐 2009年新年快乐