timeslideranimation

This configuration is optional when using the plugin Gis.

  • Documentation

  • YAML Format

  • XML Format

Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets.
<TimeSliderConfig
<notice
<font
family
required
=
string
size
optional
=
int
style
optional
=
string

Value could be e.g. plain or italic bold. Extra styles are separated by space.

Default: plain

>
required
</font>
<text
>
required
string
</text>
>
optional
</notice>
<closingCredits
enabled
optional
=
boolean
<text
>
optional
string
</text>
>
optional
</closingCredits>
<animation
<defaultNumberOfFrames
>
required
int
</defaultNumberOfFrames>
<maximumNumberOfFrames
>
required
int
</maximumNumberOfFrames>
>
optional
</animation>
>
required
</TimeSliderConfig>
This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
cadenzaconfig:
  settings:
    timeslideranimation:
      notice:
        font:
          family: "text"
          size: 15
          style: "text"
        text: "text"
      closingCredits:
        enabled: true
        text: "text"
      animation:
        defaultNumberOfFrames: 15
        maximumNumberOfFrames: 15

Filename: timeslideranimation-config.xml

This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TimeSliderConfig>
  <notice>
    <font family="text" size="15" style="text"/>
    <text>text</text>
  </notice>
  <closingCredits enabled="true">
    <text>text</text>
  </closingCredits>
  <animation>
    <defaultNumberOfFrames>15</defaultNumberOfFrames>
    <maximumNumberOfFrames>15</maximumNumberOfFrames>
  </animation>
</TimeSliderConfig>