gsap+svg实现小鸡听音乐跳舞动画效果代码

代码语言:html

所属分类:动画

代码描述:gsap+svg实现小鸡听音乐跳舞动画效果代码

代码标签: 音乐 跳舞 动画 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  

  
  
<style>
body {
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: #e6e6e6;
}
svg {
	width: 100vw;
	height: 100vh;
}

.hidden {
	visibility: hidden;
}
</style>


</head>

<body  >
  <svg viewBox="190 190 700 700" fill="none" xmlns="http://www.w3.org/2000/svg">
	<g id="scene">
		<rect width="1080" height="1080" fill="#E6E6E6" />
		<ellipse id="shadow" cx="526.126" cy="765.556" rx="175.972" ry="33.5184" fill="#DDDDDD" />
		<g id="legLeft">
			<rect id="Rectangle 6" width="28.4382" height="69.5478" rx="14.2191" transform="matrix(-1 0 0 1 483.913 715.256)" fill="#6B6B6B" />
			<rect width="28.4382" height="69.5478" rx="14.2191" transform="matrix(-0.735032 -0.678032 -0.678032 0.735032 487.568 725.065)" fill="#6B6B6B" />
		</g>
		<g id="legRight">
			<rect x="567.914" y="714.395" width="28.4382" height="69.5478" rx="14.2191" fill=&quo.........完整代码请登录后点击上方下载按钮下载查看

网友评论0