Detect Graphics card performance - JS

后端 未结 7 1753
轮回少年
轮回少年 2021-01-30 09:06

This is a longshot - is there anyway to detect poor vs strong graphics card performance via a JS plugin?

We have built a parallax site for a client, it stutters on lower

7条回答
  •  猫巷女王i
    2021-01-30 09:45

    Firefox has a build in list of graphic cards which are not supported: https://wiki.mozilla.org/Blocklisting/Blocked_Graphics_Drivers the related help acrticle.

    But you only can indirectly test them when accessing WebGL features...

    http://get.webgl.org/troubleshooting/ leads you to the corresponding browser provider when there are problems. When checking the JS code you will see that they test via

    if (window.WebGLRenderingContext) {
        alert('Your browser does not support WebGL');
    }
    

    if you have an up to date graphic card.

提交回复
热议问题