当前位置: 首页 > article >正文

css旋转代码

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>css旋转代码</title>
    <style>
.gif_pic{
     text-align: center ;  
 }
 @-webkit-keyframes rotation{
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes rotation_to{
    from { -webkit-transform: rotate(360deg);}
    to { -webkit-transform: rotate(0deg); }
} 
.add_pic{
    -webkit- transform: rotate (360deg);
    animation: rotation 1s linear infinite;
    - moz -animation: rotation 1s linear infinite;
    -webkit - animation: rotation 1s linear infinite ;
    -o-animation: rotation 1s linear infinite;
position:absolute;
top:13px;
left:4px
}  
.add_pic_a{
    -webkit- transform: rotate (360deg);
    animation: rotation_to 1s linear infinite;
    - moz -animation: rotation_to 1s linear infinite;
    -webkit - animation: rotation_to 1s linear infinite ;
    -o-animation: rotation_to 1s linear infinite;
position:absolute;
top:0;
left:0
}  
</style>
</head>
<body>
    
<div>
    <img class="add_pic img" src="./1.png" /> 
     <img class="add_pic_a img" src="./2.png" /> 
</div>
 

</body>
</html>

http://www.kler.cn/a/136312.html

相关文章:

  • Spring 设计模式:经典设计模式
  • Three.js 用户交互:构建沉浸式3D体验的关键
  • 贪心算法(五)
  • CSS Grid 布局全攻略:从基础到进阶
  • 【博主推荐】 Microi吾码开源低代码平台,快速建站,提高开发效率
  • 每日一题-两个链表的第一个公共结点
  • xlua源码分析(三)C#访问lua的映射
  • Git常用基本指令学习
  • 数据结构 并查集
  • 11.16~11.19绘制图表,导入EXCEL中数据,进行拟合
  • 一道简单的积分题目
  • 【机器学习】036_权重衰退
  • B Label, BL Label 指令
  • 基于安卓android微信小程序美容理发店预约系统app
  • 工具及方法 - 多邻国: Duolingo
  • LeetCode第七题整数反转
  • 什么是一阶逻辑?
  • 数据结构【DS】图的遍历
  • 2311rust,到66版本更新
  • 简单模拟 Spring 创建的动态代理类(解释一种@Transactional事务失效的场景)
  • 使ros1和ros2的bag一直互通
  • Go解析soap数据和修改其中数据
  • MR素数测试及 pycryptodome库下 已知MR伪素数以及强伪证 生成指定伪随机数生成器绕过素性检测
  • 网络工程师-HCIA网课视频学习
  • Apache Airflow (十二) :PythonOperator
  • 【Linux】【开发】使用sed命令遇到的乱码问题