博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
background-size搭配transition实现鼠标hover背景图放大问题
阅读量:6709 次
发布时间:2019-06-25

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

background-size的默认值是cover,必须要保证是统一类型的值才能实现过渡效果

无效写法

li {        padding: 26px 28px 0;        border-bottom: 1px solid #fff;        border-right: 1px solid #fff;        background: url(../images/qiyezhan/pic1.png) no-repeat center;        &:hover {          background-size: 120%;          -webkit-transition: background-size .3s linear;          transition: background-size .3s linear;        }}

  正确写法

li {        padding: 26px 28px 0;        border-bottom: 1px solid #fff;        border-right: 1px solid #fff;        background: url(../images/qiyezhan/pic1.png) no-repeat center;        background-size: 100%;        &:hover {          background-size: 120%;          -webkit-transition: background-size .3s linear;          transition: background-size .3s linear;        }}

  成功实现过渡放大背景效果

转载于:https://www.cnblogs.com/wszxx/p/10684803.html

你可能感兴趣的文章
UVa 11729
查看>>
MFC工具条CToolBar添加非按钮控件CComboBox
查看>>
如何更新firefox中的flash
查看>>
Vue.js
查看>>
python之logging.basicConfig
查看>>
Winform 无边框窗口移动自定义边框粗细颜色
查看>>
孙鑫- VC++在对话框程序中让对话框捕获WM_KEYDOWN消息
查看>>
js中的“==”和“===”的区别
查看>>
Python2.X如何将Unicode中文字符串转换成 string字符串
查看>>
A.华华听月月唱歌
查看>>
Feeling something wrong
查看>>
请求转发和重定向的区别及应用场景分析
查看>>
评论的延迟加载
查看>>
Skin++ 皮肤库 CCheckListBox MFC 界面风格
查看>>
学习,其实没有计划可言
查看>>
lr_abort()、exit(-1) 和 return-1之间的区别
查看>>
关于接口
查看>>
redis安装部署
查看>>
openstack-on-centos7之环境准备
查看>>
外国文学最佳中译本合集-选
查看>>