gpt4 book ai didi

javascript - 带有播放/暂停循环的 HTML 范围 slider

转载 作者:搜寻专家 更新时间:2023-10-31 08:16:09 25 4
gpt4 key购买 nike

我是 Web 开发的新手,在制作 d3 可视化时遇到了障碍。我需要一个范围 slider ,它将循环遍历二维数组(代表不同的时间点)以更改多个 SVG 元素的颜色。

据我所知,到目前为止,我所拥有的似乎功能完美。但是,我不知道如何向 HTML 范围 slider 添加播放/暂停功能来挽救我的生命。 almost this exact question 的前一篇文章只收到使用 d3 刷元素作为 slider 的建议。这是有道理的,但是看起来更复杂,我仍然无法弄清楚如何用画笔完成播放/暂停功能。

请参阅下面或 this fiddle 中嵌入的我的玩具示例的完整代码, 如果你更喜欢。我猜想有一种方法可以用 jQuery 做到这一点——但是希望尽可能减少依赖性,所以我需要一个普通的 javascript 或基于 d3 的解决方案。谢谢!

var dataSet = [
[1, 2],
[2, 3],
[3, 4],
[4, 5],
[5, 4]
];

var colorScale = d3.scale.linear()
.domain([0, 2.5, 5])
.range(["red", "white", "blue"]);

//Draw the SVG element, then the circles
var svg = d3.select('#circles')
.append("svg")
.attr("width", 200)
.attr("height", 900)
.append('g')
.attr('id', 'foo');

svg.append('circle')
.attr({
"cx": 45,
'cy': 45,
'r': 15,
'id': 'circle1'
});

svg.append('circle')
.attr({
"cx": 90,
'cy': 45,
'r': 15,
'id': 'circle2'
});

//Initialize the color fill in each circle
d3.select('#circle1')
.style('fill', function(d) {
return colorScale(dataSet[0][0]);
})
.transition();

d3.select('#circle2')
.style('fill', function(d) {
return colorScale(dataSet[0][1]);
})
.transition();

//The function which updates the fill of the circles to match a new time point
function update(timePoint) {
d3.select('#circle1')
.transition().duration(500)
.style('fill', function(d) {
return colorScale(dataSet[timePoint][0]);
});
d3.select('#circle2')
.transition().duration(500)
.style('fill', function(d) {
return colorScale(dataSet[timePoint][1]);
});
};

//Run the update function when the slider is changed
d3.select('#rangeSlider').on('input', function() {
update(this.value);
});
html {
background-color: lightgray;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>

<body>
<div id="slider">
<input type='range' min='0' max='4' step='1' value='0' id='rangeSlider' />
<button type="button" id="start">start</button>
<button type="button" id="stop">stop</button>
</div>

<div id="circles">
</div>
</body>

最佳答案

调整后的 fiddle :https://jsfiddle.net/bfbun6cc/4/

var myTimer;
d3.select("#start").on("click", function() {
clearInterval (myTimer);
myTimer = setInterval (function() {
var b= d3.select("#rangeSlider");
var t = (+b.property("value") + 1) % (+b.property("max") + 1);
if (t == 0) { t = +b.property("min"); }
b.property("value", t);
update (t);
}, 1000);
});

d3.select("#stop").on("click", function() {
clearInterval (myTimer);
});

您可以使用 d3 的属性运算符来访问 rangeslider 的最小值、最大值和值设置

请注意,像这样在范围 slider 上设置值不会触发输入事件。有多种方法可以做到这一点,但仅使用当前值调用更新函数也可以。

关于javascript - 带有播放/暂停循环的 HTML 范围 slider ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34934577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com