Топикстартер молчит, поэтому - спецвариант, чтобы глаза
рони не утомлять
<!DOCTYPE HTML>
<html>
<head>
<title>Перемещение круга</title>
<style type="text/css" >
.svgcircle
{
position: absolute;
}
.circle, .rect, .ellipse
{ -webkit-transition:all 3s cubic-bezier(0, 0, 1, 1);
-moz-transition:all 3s cubic-bezier(0, 0, 1, 1);
-o-transition:all 3s cubic-bezier(0, 0, 1, 1);
transition:all 3s cubic-bezier(0, 0, 1, 1);
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
function setNewAttr(elem) {
$(elem).attr({
cx: Math.random() * 500,
cy: Math.random() * 500,
x: Math.random() * 500,
y: Math.random() * 500,
fill: randomRGBColor()
});
}
function randomRGBComponent() {
return Math.round(Math.random() * 255);
}
function randomRGBColor() {
return 'rgb(' + randomRGBComponent() + ', ' + randomRGBComponent() + ', ' + randomRGBComponent() + ')';
}
$("html").on("click", ".circle", function () {
setNewAttr(this);
var r = document.createElementNS("http://www.w3.org/2000/svg", "rect");
$(r).attr({
class: "rect",
x: Math.random() * 500,
y: Math.random() * 500,
width: "35",
height: "35",
fill: randomRGBColor()
});
$('svg').append(r);
});
$("html").on("click", ".rect", function () {
setNewAttr(this);
var r = document.createElementNS("http://www.w3.org/2000/svg", "ellipse");
$(r).attr({
class: "ellipse",
cx: Math.random() * 500,
cy: Math.random() * 500,
rx: "50",
ry: "25",
fill: randomRGBColor()
});
$('svg').append(r);
});
$("html").on("click", ".ellipse", function () {
setNewAttr(this);
var r = document.createElementNS("http://www.w3.org/2000/svg", "circle");
$(r).attr({
class: "circle",
cx: Math.random() * 500,
cy: Math.random() * 500,
r: "35",
fill: randomRGBColor()
});
$('svg').append(r);
});
</script>
</head>
<body>
<svg version="1.1" baseProfile="full" width ="600" height ="600" class="svgcircle">
<circle class="circle" cx="300" cy="300" r="35" fill="red"/>
</svg>
</body>
</html>