Spin or rotate an image on hover(悬停时旋转或旋转图像)
问题描述
我想了解如何在悬停时制作旋转或旋转图像.我想知道如何在以下代码中使用 CSS 模拟该功能:
img {边界半径:50%;}
<img src="http://i.imgur.com/3DWAbmN.jpg"/>
上一页>
您可以使用 CSS3 过渡和 rotate()
来在悬停时旋转图像.
旋转图片:
img {过渡:转换 .7s 缓进出;}图像:悬停{变换:旋转(360度);}
<img src="https://i.stack.imgur.com/BLkKe.jpg" width="100" height="100"/>
这是一个小提琴DEMO
更多信息和参考:
- MDN 上的 CSS 过渡指南
- MDN
- caniuse.com 上的 2d 转换浏览器支持表
- caniuse.com 上的过渡浏览器支持表
I want to find out how to make a spinning or rotating image when it is hovered. I would like to know how to emulate that functionality with CSS on the following code :
img {
border-radius: 50%;
}
<img src="http://i.imgur.com/3DWAbmN.jpg" />
You can use CSS3 transitions with rotate()
to spin the image on hover.
Rotating image :
img {
transition: transform .7s ease-in-out;
}
img:hover {
transform: rotate(360deg);
}
<img src="https://i.stack.imgur.com/BLkKe.jpg" width="100" height="100"/>
Here is a fiddle DEMO
More info and references :
- a guide about CSS transitions on MDN
- a guide about CSS transforms on MDN
- browser support table for 2d transforms on caniuse.com
- browser support table for transitions on caniuse.com
这篇关于悬停时旋转或旋转图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:悬停时旋转或旋转图像


基础教程推荐
- 如何添加到目前为止的天数? 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01