はじめに
CSSを学びたいのStep23です。今回は三角関数のsin,cosを学んでいきます。
※CSSって三角関数使えたんですね。。知らんかった😅
成果物
ソースコード
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSSで三角関数を使用する例</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h2>CSSで三角関数を使用する例</h2>
<div class="circle-container">
<div class="circle"></div>
</div>
</body>
</html>
styles.css
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
h2 {
text-align: center;
color: #333;
}
.circle-container {
position: relative;
width: 200px;
height: 200px;
margin: 0 auto;
background-color: #ddd;
border-radius: 50%;
}
.circle {
position: absolute;
width: 20px;
height: 20px;
background-color: #007BFF;
border-radius: 50%;
top: calc(50% - 10px); /* 中心に配置 */
left: calc(50% - 10px); /* 中心に配置 */
transform: translate(calc(100px * cos(45deg)), calc(100px * sin(45deg)));
}