media-attrib.rng

来自「gaca源码」· RNG 代码 · 共 41 行

RNG
41
字号

<!-- ==============================================================
      SVG12-RNG | Media attribute
     ============================================================== -->

<grammar ns='http://www.w3.org/2000/svg'
         xml:lang='en'
         xmlns='http://relaxng.org/ns/structure/1.0'
         xmlns:a='http://relaxng.org/ns/compatibility/annotations/1.0'
         xmlns:svg='http://www.w3.org/2005/02/svg-annotations'
         datatypeLibrary='http://www.w3.org/2001/XMLSchema-datatypes'
         >

  <define name='svg.Properties.attr' combine='interleave'>
    <ref name='svg.Media.attr'/>
  </define>

  <define name='svg.Media.attr' combine='interleave'>
    <optional>
      <attribute name='audio-level' svg:animatable='true' svg:inheritable='false'>
        <choice>
          <value>inherit</value>
          <ref name='Number.datatype'/>
        </choice>
      </attribute>
    </optional>
  </define>

  <define name='svg.MediaClip.attr' combine='interleave'>
    <optional>
      <attribute name='clipBegin' svg:animatable='true' svg:inheritable='false'>
        <data type='string'/>
      </attribute>
      <attribute name='clipEnd' svg:animatable='true' svg:inheritable='false'>
        <data type='string'/>
      </attribute>
    </optional>
  </define>

</grammar>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?