博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css做鼠标指向图片图片放大但边框不放大
阅读量:5060 次
发布时间:2019-06-12

本文共 3490 字,大约阅读时间需要 11 分钟。

这是一个圆形边框做的效果

HTML

CSS

.circle-wrapper,.circle-wrapper img {  display: inline-block;  width: 50px;  height: 50px;  border-radius: 50%;  -webkit-transition: .3s;  transition: .3s;}.circle-wrapper {  border: 1px solid #ddd;  position: relative;  overflow: hidden;}.circle-wrapper img {  position: absolute;}.circle-wrapper img:hover {  -webkit-transform: scale(2);  transform: scale(2);}

自己做的案例:

HTML

CSS

/*案例 开始*/#cases{    clear:both;    position:relative;    width:100%;    height:800px;    padding:40px 0px;        }#al-list{    width:80%;    margin-left:10%;    position:relative;        height:30px;}.al-items{    float:left;    position:relative;    width:75%;    height:30px;        }    .al-right{    float:left;    position:relative;    margin-right:0px;    width:25%;    height:30px;        }.a-item{    margin-left:10px;    margin-right:10px;        }                    .al{    position:relative;    padding:30px 0}.anli{    width:80%;    position:relative;    margin-left:10%;    margin-top:20px;    height:200px;}.four-anli,.four-anli img{    display:inline-block;        height:200px;    -webkit-transition: .3s;      transition: .3s;    }.four-anli{    width:23%;    position:relative;    float:left;    margin-left:2%;    border:1px solid #000;    right:1%;    overflow:hidden;    }.four-anli img{    width:100%;    position:absolute;   }.four-anli img:hover{    -webkit-transform: scale(2);      transform: scale(2);  }   /*案例 结束*/

效果:

  初始效果

  鼠标移动上的效果

发现第二张图片有变化了吗

转载于:https://www.cnblogs.com/shenzikun1314/p/6733243.html

你可能感兴趣的文章
[GIF] Parenting in GIF Loop Coder
查看>>
vimium
查看>>
python基础之数据类型
查看>>
EntityManager方法简介
查看>>
codeforce 830A Office Keys
查看>>
错误:【No configuration found for the specified action: 'login.action' in namespace: " " 】
查看>>
C# 窗体间传值方法大汇总(转)
查看>>
C#关于多线程的笔记
查看>>
js切换背景颜色
查看>>
[数据结构]哈希表
查看>>
php中global与$GLOBALS的用法及区别
查看>>
sleep
查看>>
爱因斯坦:再牛逼的伟人,也有苦逼的青春ZZ
查看>>
实战webpack系列04
查看>>
C# 字符串截取 tips
查看>>
XML中文显示问题
查看>>
对角线之和--通用
查看>>
面向过程与面向对象
查看>>
bzoj1030 文本生成器(AC自动机+dp)
查看>>
清北刷题10.23night
查看>>