添加陰影考慮下面的代碼:在圈SVG
- 什麼是真正X &Ÿ指標的影響在濾芯?
- Can x &過濾元素中的y個參數是否會被javascript改變?我可以根據var h & var k中變量的變化定義house()中filter元素的變化參數。
- 在代碼中進行必要的更改以滿足需要。
<body style="background:black;margin:0px" onmousemove="house(event)">
<defs>
<filter id="f1" x="0" y="0" width="105%" height="105%">
<feOffset result="offOut" in="SourceGraphic" dx="20" dy="20" />
<feBlend in="SourceGraphic" in2="offOut" mode="normal" />
</filter>
</defs>
<circle r="25" id="circle" fill="yellow" filter="url(#f1)"></circle>
</svg>
<script>
function house(e)
{
var h=e.clientX;
var k=e.clientY;
var ball=document.getElementById("circle");
var r=ball.getAttribute("r");
ball.setAttribute("cx",h);
ball.setAttribute("cy",k);
}
</script>
@pswg什麼是編輯? – 2013-05-06 15:46:46
只是格式化。您可以點擊我名字上方的鏈接查看問題,確切瞭解編輯內容。 – 2013-05-06 15:53:50
非常感謝@pswg – 2013-05-06 17:06:54