叮当猫咪
这是一个小更新:如果使用以下内容,它将动态更新,而不是释放鼠标。“更改mousemove”功能<script>$('input[type="range"]').on("change mousemove", function () { var val = ($(this).val() - $(this).attr('min')) / ($(this).attr('max') - $(this).attr('min')); $(this).css('background-image', '-webkit-gradient(linear, left top, right top, ' + 'color-stop(' + val + ', #2f466b), ' + 'color-stop(' + val + ', #d3d3db)' + ')' );});</script>