CSS | rotateY()函数
rotateY() 函数是一个内置函数,用于围绕垂直轴旋转元素。
语法:
rotateY( angle )
参数:该功能接受单参数角度,代表旋转角度。正负角度分别顺时针和逆时针旋转元素。
以下示例说明了 CSS 中的 rotateY()函数: 示例 1:
<!DOCTYPE html>
<html>
<head>
<title>CSS rotateY() function</title>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
.rotateY_image {
transform: rotateY(60deg);
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>CSS rotateY() function</h2>
<img class="rotateY_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 rotateY() function</title>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
.GFG {
font-size:35px;
font-weight:bold;
color:green;
transform: rotateY(60deg);
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>CSS rotateY() function</h2>
<div class="GFG">Welcome to GeeksforGeeks</div>
</body>
</html>
输出:
支持的浏览器:rotateY()功能支持的浏览器如下:
- 谷歌 Chrome
- 微软公司出品的 web 浏览器
- 火狐浏览器
- 旅行队
- 歌剧
版权属于:月萌API www.moonapi.com,转载请注明出处