老师,哪里不对呢?
<rect x="0" y="100" width="100" height="50"/> 矩形的x y坐标是相对哪个原点定位的啊??
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<svg viewBox="0 0 400 200" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clipname">
<rect x="0" y="100" width="100" height="50"/>
</clipPath>
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="orange"/>
<stop offset="30%" stop-color="red"/>
<stop offset="60%" stop-color="yellow"/>
<stop offset="100%" stop-color="green"/>
</linearGradient>
</defs>
<circle cx="100" cy="100" r="50" clip-path="url(#clipname)" fill="url(#gradient)"/>
</svg>
</body>
</html>
正在回答
对,你直接改成<rect x="50" y="50" width="100" height="50"/>也是可以的,我给你的参考是考虑了整体的布局,其实都一样。预留的代码只是一个参考,不是绝对的正确,可以在写的时候灵活应变。
另外,你提到的rect的坐标是什么:
x="0" 定义矩形到画布窗口左侧的距离是 0px;
y="0" 定义矩形到画布窗口顶端的距离是 0px;
例如:
<rect x="20" y="20" width="250" height="100" style="fill:red;"/>
而这个问题中,你截取的是矩形区域内的圆的内容:
这样说同学应该能明白了,欢迎采纳!
祝学习愉快!
- 参与学习 人
- 提交作业 467 份
- 解答问题 4826 个
本路径带你通过系统学习HTML5、JavaScript、jQuery的进阶知识,不仅如此,还会学习如何利用组件化的思想来开发网页,知识点+案例,使得所学可以更好的得到实践。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星