- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 引入
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 内联块级元素
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - Clearfix
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 定位
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 平移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-Index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪裁
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - 全部
- CSS - 内边距
- CSS - 隔离
- CSS - 溢出滚动
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - 指针事件
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - 最大块级尺寸
- CSS - 最小块级尺寸
- CSS - 混合模式
- CSS - 最大内联尺寸
- CSS - 最小内联尺寸
- CSS - 偏移量
- CSS - 口音颜色
- CSS - 用户选择
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 图层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - 重要性
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - 盒装饰中断
- CSS - 光标颜色
- CSS - 文本阴影
- CSS - 文本
- CSS - 2D 变换
- CSS - 3D 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - 盒尺寸
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式设计
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS 函数 - rotate()
CSS 中的 rotate() 函数围绕二维平面上的固定点旋转元素,而不会导致任何变形。结果是 <transform-function> 数据类型。
元素旋转围绕的固定点也称为 变换原点,默认为元素的中心。使用 CSS 属性 transform-origin,可以更改和自定义变换原点。
rotate() 函数创建的元素旋转由 <angle> 指定。如果角度值为正,则旋转方向为顺时针;如果值为负,则为逆时针。当旋转 180 度时,称为 点反射。
可能的值
rotate() 函数只能接受一个参数。它指定旋转角度。
<angle>: 以度数表示。旋转方向基于书写方向。
当方向为 从左到右 上下文时,正角度使元素顺时针旋转;而负角度使元素逆时针旋转。
当方向为 从右到左 上下文时,正角度使元素逆时针旋转;而负角度使元素顺时针旋转。
语法
transform: rotate(35deg) | rotate(-35deg);
CSS rotate() - 从左到右方向旋转
以下是用各种值(例如 deg、turn、grads)作为参数的 rotate() 函数示例,从左到右方向。
<html> <head> <style> #container { display: flex; } #sample-div { height: 100px; width: 100pX; border: 2py solid black; background-image: url(images/logo.png); margin-bottom: 2em; } section { padding: 25px; border: 2px solid red; } .rotate-positive { transform: rotate(45deg); background-image: url(images/logo.png); } .rotate-negative { transform: rotate(-75deg); background-image: url(images/logo.png); } .rotate-turn { transform: rotate(2.5turn); background-image: url(images/logo.png); } .rotate-grads { transform: rotate(2grads); background-image: url(images/logo.png); } </style> </head> <body> <h1>rotate() left-to-right direction</h1> <div id="container"> <section> <p>no rotation</p> <div id="sample-div"></div> </section> <section> <p>rotate(45deg)</p> <div class="rotate-positive" id="sample-div"></div> </section> <section> <p>rotate(-75deg)</p> <div class="rotate-negative" id="sample-div"></div> </section> <section> <p>rotate(2.5turn)</p> <div class="rotate-turn" id="sample-div"></div> </section> <section> <p>rotate(2grads)</p> <div class="rotate-grads" id="sample-div"></div> </section> </div> </body> </html>
CSS rotate() - 从右到左方向旋转
以下是用各种值(例如 deg、turn、grads)作为参数的 rotate() 函数示例,从右到左方向。
<html dir="rtl"> <head> <style> #container { display: flex; } #sample-div { height: 100px; width: 100pX; border: 2py solid black; background-image: url(images/logo.png); margin-bottom: 2em; } section { padding: 25px; border: 2px solid red; } .rotate-positive { transform: rotate(45deg); background-image: url(images/logo.png); } .rotate-negative { transform: rotate(-75deg); background-image: url(images/logo.png); } .rotate-turn { transform: rotate(2.5turn); background-image: url(images/logo.png); } .rotate-grads { transform: rotate(2grads); background-image: url(images/logo.png); } </style> </head> <body> <h1>rotate() right-to-left direction</h1> <div id="container"> <section> <p>no rotation</p> <div id="sample-div"></div> </section> <section> <p>rotate(45deg)</p> <div class="rotate-positive" id="sample-div"></div> </section> <section> <p>rotate(-75deg)</p> <div class="rotate-negative" id="sample-div"></div> </section> <section> <p>rotate(2.5turn)</p> <div class="rotate-turn" id="sample-div"></div> </section> <section> <p>rotate(2grads)</p> <div class="rotate-grads" id="sample-div"></div> </section> </div> </body> </html>
CSS rotate() - 将旋转与其他变换函数结合使用
以下是用正值和负值与 translate() 函数一起使用的 rotate() 函数示例。
<html> <head> <style> div { position: absolute; left: 40px; top: 40px; width: 110px; height: 110px; background-color: lightblue; } .negative-rotate-translate { background-color: transparent; outline: 5px dotted red; transform: rotate(-55deg) translate(-10px); } .positive-rotate-translate { background-color: yellow; transform: rotate(35deg) translate(190px); } .positive-translate-rotate { background-color: green; transform: translate(190px) rotate(35deg); } </style> </head> <body> <div>No function</div> <div class="negative-rotate-translate"> -ve rotated </div> <div class="positive-rotate-translate"> rotate()+ translate() </div> <div class="positive-translate-rotate"> translate()+ rotate() </div> </body> </html>
广告