CSS3实现图片放大旋转_html/css_WEB-ITnose
程序员文章站
2022-04-09 23:49:25
...
知识点: 图片过渡缩放
css3动画
transition
/*旋转动画*/
@-webkit-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
效果:
源码:
-----------------------
/*通用样式*/
*{margin: 0;padding: 0;}
/*自定义样式*/
.img{margin-left: 25px;margin-top: 50px;margin-right: 25px;
transition: all 2s ease;
}
.img:hover{
z-index: 10;
border: 1px dashed #ff0000;
-webkit-transform: rotateY(360deg);
transform: scale(1.51,1.51) rotate(360deg);
}
.ta_c{text-align: center;
width: 99%;
}
/*旋转动画*/
@-webkit-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
推荐阅读
-
【CSS3 入门教程系列】CSS3 Media Queries 实现响应式设计_html/css_WEB-ITnose
-
如何利用CSS实现图片的透明效果_html/css_WEB-ITnose
-
使用 CSS3 伪元素实现立体的照片堆叠效_html/css_WEB-ITnose
-
使用css3实现文章新闻列表排行榜(数字)_html/css_WEB-ITnose
-
9种CSS3 blend模式制作的鼠标滑过图片标题特效_html/css_WEB-ITnose
-
CSS3实现的鼠标悬浮开门关门效果代码实例_html/css_WEB-ITnose
-
[转]CSS3 Media Query实现响应布局_html/css_WEB-ITnose
-
纯CSS3实现彩色缎带效果_html/css_WEB-ITnose
-
CSS3 实现的一个简单的"动态主菜单" 示例[转]_html/css_WEB-ITnose
-
html5 css3 jquery js 实现全屏_html/css_WEB-ITnose