美文网首页
svg 画圆

svg 画圆

作者: jeneen1129 | 来源:发表于2022-06-01 10:10 被阅读0次

样式如下

分析

两个 svg , 利用相对 box 的定位来定位 svg , 根据x, y 来确定圆的位置

代码

<div style="position:absolute;background: linear-gradient(90deg, #419488 0%, #4EB1D2 100%);min-height: 174px;">
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="110" height="50"
            style="position:absolute;left:120px;top:0;">
        <circle cx="10" cy="10" r="10" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cx="40" cy="10" r="10" fill="rgba(255, 255, 255, 0.4)" stroke-width="0"></circle>
        <circle cx="70" cy="10" r="10" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cx="100" cy="10" r="10" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cx="10" cy="40" r="10" fill="rgba(255, 255, 255, 0.4)" stroke-width="0"></circle>
        <circle cx="40" cy="40" r="10" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cx="70" cy="40" r="10" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cx="100" cy="40" r="10" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
    </svg>
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="165" height="150"
            style="position:absolute;right:-10px;bottom:-15px;">
        <circle cy="15" cx="15" r="15" fill="rgba(255, 255, 255, 0.4)" stroke-width="0"></circle>
        <circle cy="15" cx="60" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="15" cx="105" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="15" cx="150" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>

        <circle cy="55" cx="15" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="55" cx="60" r="15" fill="rgba(255, 255, 255, 0.4)" stroke-width="0"></circle>
        <circle cy="55" cx="105" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="55" cx="150" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>

        <circle cy="95" cx="15" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="95" cx="60" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="95" cx="105" r="15" fill="rgba(255, 255, 255, 0.4)" stroke-width="0"></circle>
        <circle cy="95" cx="150" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>

        <circle cy="135" cx="15" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="135" cx="60" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="135" cx="105" r="15" fill="rgba(255, 255, 255, 0.1)" stroke-width="0"></circle>
        <circle cy="135" cx="150" r="15" fill="rgba(255, 255, 255, 0.4)" stroke-width="0"></circle>
    </svg>
</div>

相关文章

  • svg 画圆

    样式如下 分析 两个 svg , 利用相对 box 的定位来定位 svg , 根据x, y 来确定圆的位置 代码

  • 使用SVG画圆弧

    本文参考如下资料:【滚城一团】彻底理解 Canvas/SVG 圆弧算法 - 滚城一团 ECharts 小课堂 SV...

  • 使用SVG实现圆环loading动画

    画圆 用SVG画一个圆先。 效果是这样的: 动画 定义一个动画并使用。 效果变成这样: 旋转 最后给动画添加上旋转...

  • Android图片之svg

    1.SVG是什么2.SVG优点3.SVG使用4.获取SVG5.封装使用6.SVG动画 1.SVG是什么? SVG(...

  • SVG的使用

    SVG图片 一. SVG介绍 1.1. SVG概念解析 SVG全称: Scalable Vector Graphi...

  • 资源

    SVG svg icon 对应git(node.js写的) svg animation study svg cs...

  • (第六天)HTML5之SVG的了解与使用&Web数据存储

    SVG 什么是SVG? SVG 指可伸缩矢量图形 (Scalable Vector Graphics) SVG 用...

  • svg standalone

    简单的 SVG 实例 一个简单的SVG图形例子: 这里是SVG文件(SVG文件的保存与SVG扩展): "http:...

  • SVG学习笔记

    SVG学习笔记 简介 SVG使用XML来描述二维图形和绘图程序的语言。 SVG形状 SVG在HTML页面 SVG ...

  • SVG

    Menu SVG 实例 SVG 形状 SVG 实例 SVG 的 用来创建一个圆。cx 和 cy ...

网友评论

      本文标题:svg 画圆

      本文链接:https://www.haomeiwen.com/subject/blcxmrtx.html