>  기사  >  웹 프론트엔드  >  회전하는 공을 구현하기 위해 CSS 3D는 어떻게 구현됩니까? (코드 예)

회전하는 공을 구현하기 위해 CSS 3D는 어떻게 구현됩니까? (코드 예)

云罗郡主
云罗郡主앞으로
2018-10-22 14:12:203730검색

이 글의 내용은 회전하는 공을 CSS 3D로 구현하는 방법에 관한 것입니다. (코드 케이스)에는 특정 참고 값이 있습니다. 도움이 필요한 친구가 참고할 수 있기를 바랍니다.

회전하는 공을 구현하기 위해 CSS 3D는 어떻게 구현됩니까? (코드 예)

자세한 코드는 다음과 같습니다.

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>zimv-css 3d ball</title>
</head>
<style>
	body{
		padding: 100px 0 0 150px;
	}
</style>
<body>

<p class="wrapper">
	<p class="box" id="circles">
	</p>
</p>
<style>
.wrapper{
	animation: rotate 3s infinite linear alternate;
	transform-style: preserve-3d;
	width: 100px;
	height: 100px;
	margin:150px 0 0 150px;
}
.box{
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transform: rotateX(-30deg) rotateY(45deg);
}
.circle{
	border-radius: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border: 1px solid red;
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  50%{
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(360deg) rotateX(180deg);
  }
}
</style>
<script>
	let cir = document.getElementById(&#39;circles&#39;);
	for(let i=0;i<180;i++){
		let p = document.createElement(&#39;p&#39;);
		p.style = `transform: rotateX(${i}deg);border: 1px solid rgba(200,200,200,1)`;
		p.className = &#39;circle&#39;;
		cir.appendChild(p);
	}
</script>
</body>
</html>

위 내용은 CSS 비디오 튜토리얼에 대한 전체 소개입니다. PHP 중국어 웹사이트를 팔로우하세요.

위 내용은 회전하는 공을 구현하기 위해 CSS 3D는 어떻게 구현됩니까? (코드 예)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 csdn.net에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제