File size: 810 Bytes
b5eff73
 
928243c
 
7c8a2ff
928243c
 
 
 
7c8a2ff
 
 
 
 
 
 
 
 
 
928243c
 
 
b5eff73
7c8a2ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>A-Frame DNA Demo</title>
    <script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
  </head>
  <body>
    <a-scene>
      <!-- First Helix -->
      <a-cylinder position="0 0 -5" height="4" radius="0.5" color="red"></a-cylinder>
      <a-torus position="0 2 -5" radius="1" radius-tubular="0.1" color="red"></a-torus>

      <!-- Second Helix -->
      <a-cylinder position="1 0 -5" height="4" radius="0.5" color="blue"></a-cylinder>
      <a-torus position="1 2 -5" radius="1" radius-tubular="0.1" color="blue"></a-torus>

      <!-- Background -->
      <a-plane position="0 0 -7" rotation="-90 0 0" width="10" height="10" color="#7BC8A4"></a-plane>
      <a-sky color="#ECECEC"></a-sky>
    </a-scene>
  </body>
</html>