智能手机不断重新加载网页

时间:2015-06-10 00:56:40

标签: javascript html

我遇到一个问题,即在智能手机上自动重新加载(刷新)网页。这不是一个理想的重载。它只发生在移动设备上(chrome developper tools - > Device mode - > Google Nexus 4)并点击刷新。

http://lavenuecondos.com/fr/

在localhost上也是如此,截图来自localhost。我不知道是不是这样做的脚本。一个月前情况并非如此。

感谢您的帮助。

Expected render on Nexus 4 Actual render on Nexus 4 See 31 'Navigated to' in Console

1 个答案:

答案 0 :(得分:0)

我找到了culprid,js write_cookie函数中的一行

float x = 0f;

IEnumerator TweenLinerenderer()
{
    while(x <= 1f)
    {
        myLineRenderer.SetPosition(1, new Vector3(x, 0, 0));
        x += Time.deltaTime;
        yield return null;
    }
    x = 0f;
}