css如何实现鼠标滑过缩略图时放大图片
程序员文章站
2022-03-19 13:23:10
...
本篇文章主要介绍css如何实现鼠标滑过缩略图时放大图片,日常购物网站中非常方便实用,有兴趣的小伙伴参考下。
代码如下:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>www.php.cn 鼠标滑过缩略图时放大图片</title> <style type="text/css"> <!-- * {margin:0;padding:0;} body {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px;} img {border:0} p {font-size:14px;} #imgmove li {float:left; width:50px; height:40px; display:block; overflow:visible;*overflow:hidden; margin:0px 5px; border:3px #333 solid;position:relative;*position:static;} #imgmove img {position:absolute;left:0px;top:0px;clip:rect(0px 50px 40px 0px);z-index: 0;*position:static;} #imgmove img:hover {position:relative; left:-3px; top:-3px; border:3px #f00 solid; z-index:2; clip:rect(0px 137px 137px 0px);} --> </style> </head> <body> <p>本例旨在展示鼠标滑到缩略图上时,放大图片。</p> <!--[if IE 6]><a href="#"><![endif]--> <ul id="imgmove"> <li><img src="http://img4.pcpop.com/WallImages/0x0/0/190/000190571.jpg" /></li> </ul> <!--[if IE 6]></a><![endif]--> </body> </html>
相关推荐:
CSS3实战开发: 手把手教大家实战开发鼠标划过图片动画特效(第二弹)_html/css_WEB-ITnose
css3鼠标划过图片散开特效_html/css_WEB-ITnose
以上就是css如何实现鼠标滑过缩略图时放大图片的详细内容,更多请关注其它相关文章!
推荐阅读
-
纯CSS3实现8组超炫酷鼠标滑过图片动画
-
鼠标滑过缩略图时放大图片(纯Css)
-
无需JS和jQuery代码实现CSS3鼠标浮动放大图片
-
Layui实现数据表格中鼠标悬浮图片放大效果,离开时恢复原图的方法
-
css实现鼠标放上去时图片过渡转换动画效果
-
JS与CSS3实现图片响应鼠标移动放大效果示例
-
纯CSS3实现8组超炫酷鼠标滑过图片动画
-
鼠标滑过缩略图时放大图片(纯Css)
-
【请教】如何实现横向布局时图片A居中宽度固定,左右两侧由不同的图片B、C填充为背景_html/css_WEB-ITnose
-
abc中,如何实现鼠标悬停时执行href?_html/css_WEB-ITnose">
在abc中,如何实现鼠标悬停时执行href?_html/css_WEB-ITnose