Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <html>

<head>
  <title> A-Frame Sky</title>

  <!--  --------- IMPORTED LIBRARIES  ------>
  

  <script src="https://aframe.io/releases/0.6.0/aframe.min.js"></script>

</head>

<body>

  <a-scene>
    <!-- Creating scene -->


    <!--  --------- ASSETS  --------- -->

    <!-- Asset links. -->
    <a-assets>

      <img id="background_inside_house" crossorigin="anonymous" src="https://cdn.glitch.com/e6225ccd-c32e-4cf8-b039-e78814a8cb78%2Fbg-3.jpg?1498128817274">
      

    </a-assets>


    <!--  --------- SKY  --------- -->

    <!--The sky is the horizon and surronding enviroment if u don't create a ground
  It can be a color or an image. Usually it's a 360 equirectangular image

 Since you can only have 1 sky at a time, to see the other possibilities, comment the sky bellow and uncomment one of the others.
 For goof and free 360º images, visit: https://www.flickr.com/search/?text=equirectangular&license=4%2C5%2C9%2C10

Sky documentation: https://aframe.io/docs/0.6.0/primitives/a-sky.html-->


    <a-sky  id="background-img" src="#background_inside_house"></a-sky>

    <!--   If you insert both options the sky will have a color filter
The radius attribute will make the image trippy, a curious finding by A-Frame contributor Cwervo-->
    <!--    <a-sky  id="background-img" src="#background_inside_house" color="red" radius=10 ></a-sky> -->

    <!--  If you insert only color and no src, the sky will be the chosen color -->
    <!--  <a-sky  id="background-img" color="red" ></a-sky> -->

  
  </a-scene>
  <!-- Closing scene -->
</body>

</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console