document.addEventListener("DOMContentLoaded", function(){
//if IsRefresh cookie exists
var IsRefresh = getCookie("IsRefresh");
if (IsRefresh != null && IsRefresh != "") {
//cookie exists then you refreshed this page(F5, reload button or right click and reload)
//SOME CODE
DeleteCookie("IsRefresh");
}
else {
//cookie doesnt exists then you landed on this page
//SOME CODE
setCookie("IsRefresh", "true", 1);
}
})
.section {
position: relative;
max-width: 1140px;
margin: 0 auto;
}
@media all and (max-width: 500px){
#nav-home {
height: 500px;
overflow: auto;
}
}
<button type="submit">Кнопка</button>
<input type="submit" value="Кнопка" />
var gl; // глобальная переменная для контекста WebGL
function start() {
var canvas = document.getElementById("glcanvas");
gl = initWebGL(canvas); // инициализация контекста GL
// продолжать только если WebGL доступен и работает
if (gl) {
//WebGL доступен
}
}
function initWebGL(canvas) {
gl = null;
try {
// Попытаться получить стандартный контекст. Если не получится, попробовать получить экспериментальный.
gl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl");
}
catch(e) {}
// Если мы не получили контекст GL, завершить работу
if (!gl) {
alert("Unable to initialize WebGL. Your browser may not support it.");
gl = null;
}
return gl;
}