1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="../dist/zrender.js"></script>
</head>
<body>
<style>
html {
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
}
.chart {
height: 200px;
}
h1 {
background: #000;
color: #eee;
font-size: 18px;
text-align: center;
padding: 10px;
margin: 0 0 10px 0;
}
</style>
<h1>
Click "hide" "move to grey circle" "show" in turn<br>
The red circle should be in the grey circle finally.
</h1>
<button id="main0Btn1">hide</button>
<button id="main0Btn2">move to grey circle</button>
<button id="main0Btn3">show</button>
<div id="main0" class="chart"></div>
<script type="text/javascript">
(function () {
var zr = zrender.init(document.getElementById('main0'));
var circle = new zrender.Circle({
style: {
fill: 'red',
},
shape: {
cx: 100,
cy: 100,
r: 30
}
});
var targetBgCircle = new zrender.Circle({
style: {
fill: '#aaa',
},
shape: {
cx: 200,
cy: 100,
r: 40
},
z: -1
});
zr.add(circle);
zr.add(targetBgCircle);
document.getElementById('main0Btn1').onclick = function () {
circle.attr({
style: {
opacity: 0
}
});
};
document.getElementById('main0Btn2').onclick = function () {
circle.attr({
shape: {
cx: 200
}
});
};
document.getElementById('main0Btn3').onclick = function () {
circle.attr({
style: {
opacity: 1
}
});
};
})();
</script>
</body>
</html>
|