欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

css实现图片切换效果

程序员文章站 2022-03-17 14:44:39
...
本篇文章主要介绍css实现图片切换效果非常不错,不用css,代码比较精简,推荐使用,注意一下多浏览器的兼容性。

代码如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
<html> 
    <head> 
        <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
        <title>纯css图切换 练习 教程来自snwebsite</title> 
        <style type="text/css"> 
            a{ 
                display:block; 
                border:1px solid #cccccc; 
                width:20px; 
                height:20px; 
                margin:1px; 
            } 
            dl{ 
                position:absolute; 
                width:240px; 
                height:170px; 
            } 
            dt{ 
                position:absolute; 
                right:1px; 
                top:25px; 
            } 
            dd{ 
                width:240px; 
                height:170px; 
                overflow:hidden; 
            } 
        </style> 
        <script language="JavaScript" type="text/javascript"> 

        </script> 

    </head> 
    <body> 
        <dl> 
            <dt><a href="#a">1</a><a href="#b">2</a><a href="#c">3</a></dt> 
            <dd> 
                <img src="http://files.jb51.net/upload/20080926074249449.jpg" id="a" /> 
                <img src="http://files.jb51.net/upload/20080926074251309.jpg" id="b" /> 
                <img src="http://files.jb51.net/upload/20080926074251902.jpg" id="c" /> 
            </dd> 
        </dl> 
    </body> 
</html>

相关推荐:

jquery做出缩略图关联图片切换功能

jquery鼠标滚轮实现图片切换

使用JS实现鼠标滚轮绑定页面图片切换

以上就是css实现图片切换效果的详细内容,更多请关注其它相关文章!