当前位置:网站首页>如何封装 svg
如何封装 svg
2022-08-04 18:17:00 【Anita-Sun】
svg
- svg 代表可缩放矢量图形,以 XML 格式定义基于矢量的图形
- 例:
<html> <body> <h1>My first SVG</h1> <svg width="100" height="100"> <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" /> </svg> </body> </html>
在 react 中封装 svg
背景
- 我将 svg 图片导入了项目文件夹中,例
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.0758667" width="32.1457" height="32" fill="black"/> <g clip-path="url(#clip0_55_1126)"> <path d="M23.1806 9H9.11684V23H23.1806V9Z" fill="white" fill-opacity="0.01"/> <path d="M10.8748 11.625L15.0939 16.5302V20.213L17.2035 21.25V16.5302L21.4226 11.625H10.8748Z" stroke="#EBEBEB" stroke-width="0.875" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_55_1126"> <rect width="14.0637" height="14" fill="white" transform="translate(9.11684 9)"/> </clipPath> </defs> </svg>
- 如果直接使用的话,无法控制 svg 图片的大小,所以我想是否可以封装一下
过程
- 将 svg 图片分为两部分,外边 svg 标签部分和内容部分
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> </svg>
<rect x="0.0758667" width="32.1457" height="32" fill="black"/> <g clip-path="url(#clip0_55_1126)"> <path d="M23.1806 9H9.11684V23H23.1806V9Z" fill="white" fill-opacity="0.01"/> <path d="M10.8748 11.625L15.0939 16.5302V20.213L17.2035 21.25V16.5302L21.4226 11.625H10.8748Z" stroke="#EBEBEB" stroke-width="0.875" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_55_1126"> <rect width="14.0637" height="14" fill="white" transform="translate(9.11684 9)"/> </clipPath> </defs>
- 创建
downArrow.tsx
文件夹import React from "react"; export const DownArrow = () => { return ( <> <rect x="0.816376" width="32.1457" height="32" fill="black"/> <g clipPath="url(#clip0_39_400)"> <path d="M23.9211 9H9.85735V23H23.9211V9Z" fill="white" fillOpacity="0.01"/> <path d="M20.6981 14.25L17.1822 17.75L13.6663 14.25" stroke="#EBEBEB" strokeWidth="0.875" strokeLinecap="round" strokeLinejoin="round"/> </g> <defs> <clipPath id="clip0_39_400"> <rect width="14.0637" height="14" fill="white" transform="translate(9.85735 9)"/> </clipPath> </defs> </> ); }
- 封装 svg.jsx,应该可简单啦,我这里就不写啦
边栏推荐
猜你喜欢
leetcode 14. 最长公共前缀
npm配置国内镜像(淘宝镜像)
Win10只读文件夹怎么删除
网络靶场监控系统的安全加固纪实(1)—SSL/TLS对日志数据加密传输
2018年南海区小学生程序设计竞赛详细答案
LVS+Keepalived群集
Documentary on Security Reinforcement of Network Range Monitoring System (1)—SSL/TLS Encrypted Transmission of Log Data
Thrift IDL Sample File
巴比特 | 元宇宙每日必读:微博动漫将招募全球各类虚拟偶像并为其提供扶持...
12. SAP ABAP OData 服务如何支持 $select 有选择性地仅读取部分模型字段值
随机推荐
clickhouse online and offline table
【杰神说说】物联大师2.0版本预告
使用bash语句,清空aaa文件夹下的所有文件
如何给MySQL添加自定义语法 ?
老电脑怎么重装系统win10
YOLOv7-Pose尝鲜,基于YOLOv7的关键点模型测评
【web自动化测试】playwright安装失败怎么办
LeetCode 899. 有序队列
离散化求前缀和
基于 eBPF 的 Kubernetes 可观测实践
ptables基本语法使用规则
火灾报警联网FC18中CAN光端机常见问题解答和使用指导
链表的经典入门LeetCode题目
CAN光纤转换器CAN光端机解决消防火灾报警
Nintendo won't launch any new hardware until March 2023, report says
The prefix and discretization
怎么招聘程序员
buuctf(探险1)
[Web Automation Test] Quick Start with Playwright, 5 minutes to get started
自己经常使用的三种调试:Pycharm、Vscode、pdb调试