javascript - 使用 CSS 和 JS 更改调试悬停状态的最佳方法

标签 javascript css debugging highcharts hover

我想知道在使用 JS 库(在我的示例中为 Highcharts)时调试处于悬停状态的 HTML 元素的最佳/散文家方法是什么。 该库使用 CSS,但也使用 JS 实时操作 DOM。

例如,在附带的 JS fiddle 中有一个 Highcharts 散点图,我想知道工具提示(将鼠标悬停在其中一个点上时出现)的所有属性。 我在这里看到类似的问题,在firebug中我可以模拟一个元素的悬停状态的CSS规则,但是我没有看到任何关于当CSS和JS一起使用时如何调试的答案。

在悬停状态下是否有“堆叠”页面的选项,以便我可以检查整个状态?

example jsFiddle

$(function () {
    $('#container').highcharts({

        chart: {
            type: 'bubble',
            plotBorderWidth: 1,
            zoomType: 'xy'
        },

        legend: {
            enabled: false
        },

        title: {
            text: 'Sugar and fat intake per country'
        },

        subtitle: {
            text: 'Source: <a href="http://www.euromonitor.com/">Euromonitor</a> and <a href="https://data.oecd.org/">OECD</a>'
        },

        xAxis: {
            gridLineWidth: 1,
            title: {
                text: 'Daily fat intake'
            },
            labels: {
                format: '{value} gr'
            },
            plotLines: [{
                color: 'black',
                dashStyle: 'dot',
                width: 2,
                value: 65,
                label: {
                    rotation: 0,
                    y: 15,
                    style: {
                        fontStyle: 'italic'
                    },
                    text: 'Safe fat intake 65g/day'
                },
                zIndex: 3
            }]
        },

        yAxis: {
            startOnTick: false,
            endOnTick: false,
            title: {
                text: 'Daily sugar intake'
            },
            labels: {
                format: '{value} gr'
            },
            maxPadding: 0.2,
            plotLines: [{
                color: 'black',
                dashStyle: 'dot',
                width: 2,
                value: 50,
                label: {
                    align: 'right',
                    style: {
                        fontStyle: 'italic'
                    },
                    text: 'Safe sugar intake 50g/day',
                    x: -10
                },
                zIndex: 3
            }]
        },

        tooltip: {
            useHTML: true,
            headerFormat: '<table>',
            pointFormat: '<tr><th colspan="2"><h3>{point.country}</h3></th></tr>' +
                '<tr><th>Fat intake:</th><td>{point.x}g</td></tr>' +
                '<tr><th>Sugar intake:</th><td>{point.y}g</td></tr>' +
                '<tr><th>Obesity (adults):</th><td>{point.z}%</td></tr>',
            footerFormat: '</table>',
            followPointer: true
        },

        plotOptions: {
            series: {
                dataLabels: {
                    enabled: true,
                    format: '{point.name}'
                }
            }
        },

        series: [{
            data: [
                { x: 95, y: 95, z: 13.8, name: 'BE', country: 'Belgium' },
                { x: 86.5, y: 102.9, z: 14.7, name: 'DE', country: 'Germany' },
                { x: 80.8, y: 91.5, z: 15.8, name: 'FI', country: 'Finland' },
                { x: 80.4, y: 102.5, z: 12, name: 'NL', country: 'Netherlands' },
                { x: 80.3, y: 86.1, z: 11.8, name: 'SE', country: 'Sweden' },
                { x: 78.4, y: 70.1, z: 16.6, name: 'ES', country: 'Spain' },
                { x: 74.2, y: 68.5, z: 14.5, name: 'FR', country: 'France' },
                { x: 73.5, y: 83.1, z: 10, name: 'NO', country: 'Norway' },
                { x: 71, y: 93.2, z: 24.7, name: 'UK', country: 'United Kingdom' },
                { x: 69.2, y: 57.6, z: 10.4, name: 'IT', country: 'Italy' },
                { x: 68.6, y: 20, z: 16, name: 'RU', country: 'Russia' },
                { x: 65.5, y: 126.4, z: 35.3, name: 'US', country: 'United States' },
                { x: 65.4, y: 50.8, z: 28.5, name: 'HU', country: 'Hungary' },
                { x: 63.4, y: 51.8, z: 15.4, name: 'PT', country: 'Portugal' },
                { x: 64, y: 82.9, z: 31.3, name: 'NZ', country: 'New Zealand' }
            ]
        }]

    });
});
.highcharts-tooltip h3 {
    margin: 0.3em 0;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="height: 400px; min-width: 310px; max-width: 600px; margin: 0 auto"></div>

最佳答案

您可以做的是在 Chrome 中打开您的网站,点击 Web 开发人员工具栏的 F12,然后将鼠标悬停在您要测试的元素上。

enter image description here

然后从右上角选择 Thumbtack 旁边的加号,选择图钉 enter image description here

完成后你可以选择你想要的状态

enter image description here

那时你会写一个 css :hover 来查看状态发生。 (尽管经常复制和保存)。

关于javascript - 使用 CSS 和 JS 更改调试悬停状态的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34277036/

相关文章:

javascript - HighStock - 动态添加系列到导航器

javascript - 使用 node.js 作为 WebRTC 对等点?

css - Div 内的居中元素

iphone - Objective-C 日志方法调用

debugging - 如果您无法解决错误,该怎么办?

javascript - 从多个数组属性创建对象

javascript - 在 Instagram 中获取客户 ID 的评论权限

css - 将父 div 大小用于 Bootstrap 响应式网格系统

html - Bootstrap 4 导航分隔线

Windows 内核条件断点未评估