rotate()函数是一个内置函数,用于基于给定角度作为参数旋转元素。可以按照度数,刻度,弧度或转角设置角度。
用法:
rotate( angle )
参数:该函数接受代表旋转角度的单个参数角度。正角和负角分别使元素顺时针和逆时针旋转。
以下示例说明了CSS中的rotate()函数:
范例1:
<!DOCTYPE html>
<html>
<head>
<title>CSS rotate() function</title>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
.rotate_image {
transform:rotate(45deg);
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>CSS rotate() function</h2>
<br><br>
<img class="rotate_image" src=
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png"
alt="GeeksforGeeks logo">
</body>
</html>
输出:
范例2:
<!DOCTYPE html>
<html>
<head>
<title>CSS rotate() function</title>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
.GFG {
font-size:35px;
font-weight:bold;
color:green;
transform:rotate(30deg);
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>CSS rotate() function</h2>
<br><br>
<div class="GFG">Welcome to GeeksforGeeks</div>
</body>
</html>
输出:
支持的浏览器:rotate()函数支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- 火狐浏览器
- 苹果浏览器
- Opera
相关用法
- p5.js rotate()用法及代码示例
- CSS hue-rotate()用法及代码示例
- PHP Ds\Vector rotate()用法及代码示例
- PHP Ds\Deque rotate()用法及代码示例
- PHP Ds\Sequence rotate()用法及代码示例
- PHP GmagickDraw rotate()用法及代码示例
- PHP ImagickDraw rotate()用法及代码示例
- Node.js GM rotate()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 CSS | rotate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。