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

Save Automatically?

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

              
                <!-- define a div element that will hold the 360 HD Viewer -->
<div id="put-viewer-here"></div>

              
            
!

CSS

              
                #put-viewer-here {
  width:100%;
  margin-left:auto;
  margin-right:auto;
}
/*Override style for the viewer tooltip text */
.cylindo-drag-tooltip,.cylindo-zoom-drag-tooltip{
  color:#B2A2D3 !important;
}

              
            
!

JS

              
                // declare the variable that will hold the 360 HD Viewer instance
var viewerInstance = null;
// the opts object should hold the start properties of the 360 HD Viewer
var opts = {  
            'productCode': 'EMMA_ARMCHAIR',
            'accountID': 4965,
            'features': ['UPHOLSTERY', 'WHEAT', 'LEGS', 'METAL_LEGS'],
            'containerID': 'put-viewer-here',
            'thumbCount': 5,
            'thumbs': true,
            //Array of alternate content
            'alternateContent': [{//Images example
                'image': '//demo.cylindo.com/viewer/images/EmmaArmchair1.jpg',
                'thumb': '//demo.cylindo.com/viewer/images/EmmaArmchair1.jpg'
            },{//Direct video example
                //Video provider direct | youtube | vimeo 
                'provider': 'direct',
                //Video description 
                'description': 'Video description',
                //Video poster url 
                'poster': 'http://clients.cylindo.com/viewer/3.x/v3.1/test/assets/videos/v11.png',
                //Video thumb url 
                'thumb': 'http://clients.cylindo.com/viewer/3.x/v3.1/test/assets/videos/v11.png',
                //Video source url and type
                'sources': [{
                    'src': 'http://clients.cylindo.com/viewer/3.x/v3.1/test/assets/videos/v11.mp4',
                    'type': 'video/mp4',
                }],
            }],
            'progressBar': false,
}

// make sure the cylindo framework has been "installed"
if (cylindo) {
  // do not instantiate the viewer until the framework reports ready.
  cylindo.on('ready', function () {
    // create the instance
    viewerInstance = cylindo.viewer.create(opts);
  });
}

              
            
!
999px

Console