微信公众号制作开发 微信小程序定制开发 网站建设制作 手机app软件开发

您的位置:首页 > 技术观点 > 信息详情

HTML5新特性之用SVG绘制微信logo

来源:山东鸿软信息科技有限公司  阅读量:512  时间:2016-02-14 14:26
本篇文章主要介绍了HTML5新特性之用SVG绘制的微信logo的相关资料,需要的朋友可以参考下

HTML5 中的一些有趣的新特性: 

1、用于绘画的 canvas 元素 

2、用于媒介回放的 video 和 audio 元素 

3、对本地离线存储的更好的支持 

4、新的特殊内容元素,比如 article、footer、header、nav、section 

5、新的表单控件,比如 calendar、date、time、email、url、search


HTML部分的代码如下: 


<style>

* { 

padding: ; 

margin: ; 

body { 

background-color: #ddd; 

.container { 

width: px; 

height: px; 

position: relative; 

top: px; 

left: %; 

transform: translated(-%,,); 

background-color:#c; 

border-radius: px; 

box-shadow: px #cbfbf; 

.container object{ 

position:relative; 

top:px; 

left:px; 

</style> 

<body> 

<div class="container"> 

<object data="logo.svg" width="" height="" type="image/svg+xml" /> 

</div> 

</body>


下面是xml格式的代码,跟html文档分离的。


<?xml version="." standalone="no"?> 

<!DOCTYPE svg PUBLIC "-//WC//DTD SVG .//EN" 

"http://www.w.org/Graphics/SVG/./DTD/svg.dtd"> 

<svg width="%" height="%" version="." xmlns="http://www.w.org//svg"> 

<ellipse cx="" cy="" rx="" ry="" style="fill:rgb(,,);stroke:rgb(,,);stroke-width:"/> 

<circle cx="" cy="" r="" style="fill:#c;stroke:#c;stroke-width:"/> 

<circle cx="" cy="" r="" style="fill:#c;stroke:#c;stroke-width:"/> 

<polygon points=", , ," style="fill:#fff;stroke:#fff;stroke-width:"/> 

<ellipse cx="" cy="" rx="" ry="" style="fill:#c;stroke:#c;stroke-width:"/> 

<ellipse cx="" cy="" rx="" ry="" style="fill:rgb(,,);stroke:rgb(,,);stroke-width:"/> 

<circle cx="" cy="" r="" style="fill:#c;stroke:#c;stroke-width:"/> 

<circle cx="" cy="" r="" style="fill:#c;stroke:#c;stroke-width:"/> 

<polygon points=", , ," style="fill:#fff;stroke:#fff;stroke-width:"/> 

</svg>


以上所述是小编给大家分享的HTML5新特性之用SVG绘制的微信logo ,希望对大家有所帮助。

成为您更加专业的技术合伙人

网站建设 | APP开发 | 产品服务 | 技术观点 | 关于我们      客服电子邮箱:1828087588@qq.com  客服QQ:1828087588、1421667633  电话:151-6502-2080

Copyright © 2016-2024 山东鸿软信息科技有限公司 版权所有 https://www.greatsoft.cn 鲁ICP备16026454号