splinecode三维apple watch手表效果代码

代码语言:html

所属分类:三维

代码描述:splinecode三维apple watch手表效果代码

代码标签: splinecode 三维 apple watch 手表

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

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

<head>
  <meta charset="UTF-8">

  
<style>
body {
background-color: #1B1B1D;
  margin: 0;
overflow: hidden;
}

#container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
  height: 100% !important;

}
#canvas3d{
  width: 100% !important;
  height: 100% !important;
}

.swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 10px;
  opacity: 0;
  cursor: pointer;
}
#swatches {
  display: flex;
  align-content: center;
  justify-content: center;
}
.swatch:nth-child(1) {
  background-color: #00B7D1;
}
.swatch:nth-child(2) {
  background-color: #DEDEE0;
}
.swatch:nth-child(3) {
  background-color: #7761C2;
}
.swatch:nth-child(4) {
  background-color: #DF7331;
}
.swatch:nth.........完整代码请登录后点击上方下载按钮下载查看

网友评论0