sublime text3快速生成svg相关结构

http://frontenddev.org/article/sublime-does-text-3-plug-in-custom-emmet-grammatical-rules-in-order-to-quickly-bootstrap-output-component.html

由于emmet对svg的标签支持很不全面,下面是我常用的快捷规则:

{  
    ///  
    // Emmet customization  
    // Each section has the same meaning as the same-named JSON file  
    // described here:  
    // http://docs.emmet.io/customization/  
    ///  
    // Custom snippets definitions, as per https://github.com/emmetio/emmet/blob/master/snippets.json  
    "snippets": {  
        "html": {  
            // https://github.com/emmetio/emmet/blob/master/snippets.json#L644  
            "abbreviations": {  
                "svg": "<svg width=\"400\" height=\"300\" viewBox=\"0 0 400 300\"></svg>",  
                "defs": "<defs></defs>",  
                "use": "<use xlink:href=\"#shape\" x=\"50\" y=\"50\"></use>",  
                "symbol": "<symbol id=\"shape\"></symbol>",  
                "linearGradient": "<linearGradient id=\"linear\" x1=\"0%\" x2=\"100%\" y1=\"0%\" y2=\"100%\"></linearGradient>",  
                "radialGradient": "<radialGradient id=\"radial\" cx=\"0%\" cy=\"0%\" r=\"100%\" fx=\"50%\" fy=\"50%\"></radialGradient>",  
                "stop": "<stop offset=\"0%\" stop-color=\"#000\" stop-opacity=\"1\"></stop>",  
                "pattern": "<pattern id=\"pattern\" x=\"0\" y=\"0\" width=\"20%\" height=\"20%\" patternUnits=\"userSpaceOnUse\"></pattern>",  
                "g": "<g id=\"shape\" stroke=\"red\" fill=\"green\"></g>",  
                "rect": "<rect x=\"0\" y=\"0\" width=\"100\" height=\"80\" rx=\"5\" ry=\"5\"></rect>",  
                "circle": "<circle cx=\"50\" cy=\"50\" r=\"20\"></circle>",  
                "ellipse": "<ellipse cx=\"50\" cy=\"50\" rx=\"20\" ry=\"10\"></ellipse>",  
                "line": "<line x1=\"0\" y1=\"0\" x2=\"20\" y2=\"50\" stroke=\"red\"></line>",  
                "polyline": "<polyline points=\"0,-10 2,-2 10,0 2,2 0,10 -2,2 -10,0 -2,-2\" stroke=\"red\" fill=\"none\"></polyline>",  
                "polygon": "<polygon points=\"0,-10 2,-2 10,0 2,2 0,10 -2,2 -10,0 -2,-2\"></polygon>",  
                "path": "<path d=\"M10,10 L40,60 L20,80 L60,90 L70,20 Z\" stroke=\"red\" fill=\"none\"></path>",  
                "text": "<text x=\"50\" y=\"50\" dx=\"20 40 60\" dy=\"20 40 60\" stroke=\"red\" fill=\"green\" font-size=\"30\" font-family=\"Microsoft YaHei\"></text>",  
                "tspan": "<tspan stroke=\"red\" fill=\"none\"></tspan>",  
                "textPath": "<textPath xlink:href=\"#textPath\"></textPath>",
                "clipPath": "<clipPath id=\"clipPath\"></clipPath>",  
                "mask": "<mask id=\"mask\"></mask>",  
                "animate": "<animate id=\"animate\" attributeName=\"fill\" begin=\"0; animate2.end+1s\" from=\"red\" to=\"blue\" dur=\"2s\" fill=\"freeze\"></animate>",
                "animateTransform": "<animateTransform attributeName=\"transform\" type=\"rotate\" from=\"0\" to=\"45\" dur=\"2s\" fill=\"freeze\"></animateTransform>",
                "animateMotion": "<animateMotion  path=\"M0,0 L20,100 L80,100 Z\" rotate=\"auto\" dur=\"2s\" fill=\"freeze\"></animateMotion>",
            }  
        }  
    },  
    // Output profiles for syntaxes  
    // http://docs.emmet.io/customization/syntax-profiles/  
    "syntaxProfiles": {  
        // Enable XHTML dialect for HTML syntax
        // "html": "xhtml"
        // 
        // Write chained CSS abbreviations on single line:
        // "css": "css_line"
        // force XHTML profile for HTML syntax
           "html": "xhtml",
           // create our own profile for XML
           "xml": {
               "tag_case": "upper",
               "attr_quotes": "single"
           }
    }  
}








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值