是否允许使用 XML 中的自定义元素,fe<foo>
还是<bar>
?
我想用 HTML 和 JS 创建一个基于 XML 的 Slider,它的内容应该可以通过 XML 进行编辑。在那里,我想创建一个不仅仅是内容的 XML 文件。应该在其中定义 Transitiontypes 和 Transitionspeed。它可能看起来类似于以下内容:
<slider>
<layer image="../path/to/image" fromoffset="-50,-50" tooffset="100,100" transition="moveup">
<object image="../path/to/image" fromoffset="-50,-50" tooffset="100,100" transition="moveright"></object>
// The Object could be an image moving into the image
</layer>
</slider>
有什么要考虑的吗?