Develop Visual Graphics

πŸ’«Layer Transition Lifecycle

CSS Selectors

Default selectors:
  • #visual_canvas .canvas Canvas wrapper containing all layers
Layer
  • .layer Wraps layer, with Layer’ CSS Selector applied
    • # ID Selector for Layer (customizable)
      • Image without caption
    • .type-{type} β†’ contains layer type (.layer.type-text = a text layer)
      • schedulingmedia
      • text
      • media
      • html
      • snippet
Elements
  • Text
    • .h1 - .h6 + .p are classes that are added to the layer element

Customize Visual

Header HTML

Add libraries to your Output
Included Libraries by default
  • Tailwind CSS (CSS styling)
β†’ See for layer’ element selectors
Custom Examples

Body Javascript

Raw Javascript to be added at the end of the Body
Events
To integrate your custom logic with the described Layer transition states (see) Events are dispatched on activation and hide events.
When an layer is activated the layer-activated event is triggered on the .layer HTML element. When hidden the layer-hidden event is triggered:
javascript
document .querySelector(".layer#selection-id") .addEventlistener("layer-activated", function(){ // do special stuff }) document .querySelector(".layer#selection-id") .addEventlistener("layer-hidden", function(){ // do special stuff })

Body-end HTML

HTML code (CSS, etc.) that is added to the end of the body (js wont be evaluated, script tags will)
Adding animations for yet to be rendered elements

Custom CSS

Appended at the end of the header after Header HTML .

Custom Fonts

If you want to make use of your own fonts, follow the next steps:
  1. Make sure you’ve uploaded the fonts in public place, available on a public url
  1. Adjust your Custom CSS
    1. css
      @font-face { font-family: 'Your Custom Font'; src: url('https://stationx-publicwebsite.com/customfont.woff2') format('woff2') font-weight: normal; font-style: normal; } .canvas { font-family: "Your Custom Font", sans-serif; } .layer { /* Layer you want to customize specifically */ font-family: "Your Custom Font", sans-serif; }
  1. Verify if the font is working in the designer. If not- the Devtools of your browser will show helpful font resolver errors to debug loading your custom font.