我遇到一个问题,即在智能手机上自动重新加载(刷新)网页。这不是一个理想的重载。它只发生在移动设备上(chrome developper tools - > Device mode - > Google Nexus 4)并点击刷新。
在localhost上也是如此,截图来自localhost。我不知道是不是这样做的脚本。一个月前情况并非如此。
感谢您的帮助。
答案 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;
}