为单个SVG路径创建DOM元素的淘汰绑定处理程序。此绑定处理程序将注册为bmglsvgpath。
此绑定的参数是
- 路径:SVG路径作为字符串。
- 宽度:不应用转换的SVG路径的宽度。
- 高度:不应用转换的SVG路径的高度。
- css:可选。包含要应用于SVG的其他CSS类的字符串。始终应用bmgl svgpath svg。
Example
// Create an SVG as a child of a div
<div data-bind="bmglSvgPath: { path: 'M 100 100 L 300 100 L 200 300 z', width: 28, height: 28 }"></div>
// parameters can be observable from the view model
<div data-bind="bmglSvgPath: { path: currentPath, width: currentWidth, height: currentHeight }"></div>
// or the whole object can be observable from the view model
<div data-bind="bmglSvgPath: svgPathOptions"></div>