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

              
                <canvas id="degradado" width="300px" height="120px">
 Tu navegador no soporta canvas. <!-- Mensaje para mostrar si el navegador no soporta la etiqueta canvas -->
</canvas>
              
            
!

CSS

              
                body {
  background: rgb(29, 31, 32); 
}
#degradado {
  margin: 20px auto;
  display: block;
}
              
            
!

JS

              
                 var c = document.getElementById("degradado");
 var cxt = c.getContext("2d");
 
 // Gradiente vertical
 var grt = cxt.createLinearGradient(0,10,0,50);
 grt.addColorStop(0,"red");  // Color de inicio del gradiente
 grt.addColorStop(1,"yellow"); // Color de fin del gradiente

 cxt.strokeStyle = grt; // Pone el gradiente como estilo paa pintar lineas
 cxt.font = "40px Book Antiqua, Sans-serif";
 cxt.strokeText("Degradados",50,40); // Texto contornos

 // Gradiente horizontal
 var grt2 = cxt.createLinearGradient(50,0,150,0);
 grt2.addColorStop(0,"red");  // Color de inicio del gradiente
 grt2.addColorStop(0.3,"yellow"); // Color intermedio
 grt2.addColorStop(0.6,"green"); // Color intermedio
 grt2.addColorStop(1,"blue"); // Color de fin del gradiente
 cxt.fillStyle = grt2;
 cxt.fillRect(50,50, 100, 50);

 // Gradiente en diagonal
 var grt3 = cxt.createLinearGradient(160,50,200,150);
 grt3.addColorStop(0,"white");  // Color de inicio del gradiente
 grt3.addColorStop(0.2,"black"); // Color intermedio
 grt3.addColorStop(0.4,"white"); // Color intermedio
 grt3.addColorStop(0.6,"black"); // Color de fin del gradiente
 cxt.fillStyle = grt3;
 cxt.fillRect(160,50, 100, 50);

 //Gradiente circular
 var grt4 = cxt.createRadialGradient(205,75,2,210,80,35);
 grt4.addColorStop(0,"red");  // Color de inicio del gradiente
 grt4.addColorStop(0.3,"rgba(0,0,255,0.3)");  // Color con transparencia en el gradiente
 grt4.addColorStop(1,"#ffff00"); // Color de fin del gradiente
 cxt.fillStyle = grt4;
 cxt.fillRect(180,60, 60, 40);
              
            
!
999px

Console