Webgl by Vertrigo

Hi people, I am a beginner in WebGL, and I’m running into a problem WebGL.

After I save the code in notepad + +, I open the file through a simulation server, the vertrigo, but when I open the page, it does not work.
I’ll have to buy a domain to always check the progress of my project?

I only use firefox and google chrome.

Thanks

You should not need a simulation server. With an html file that contains something similar to

<!DOCTYPE HTML>
<html lang=“en”><head>
<title>gl64k - the webgl competition</title>
<meta charset=“utf-8”>
<meta http-equiv=“X-UA-Compatible” content=“chrome=1”>
<style type=“text/css”>
* { margin: 0px; padding:0px; }
</style>
</head><body>
<canvas id=“canvas”></canvas>
<script type=“text/javascript” >
var gl = (function () {
var d=document, w=window, c=d.getElementById(‘canvas’),
gl = c.getContext(‘experimental-webgl’);

	function resize() {
		c.width = w.innerWidth;
		c.height = w.innerHeight;
		gl.viewport(0, 0, c.width, c.height);
	}; resize(); w.addEventListener('resize', resize, false);
	
	return gl;
})();
&lt;/script&gt; 
&lt;script type="text/javascript" src="YOURS.js"&gt;&lt;/script&gt; 

</body></html>

and webgl in the file YOURS.js you should be able to test using a file path URL in Chrome. No need for a server simulator unless you code needs server support.

Your file path URL will look something like
file:///C:/test/webgl/index.html

There is nothing special about the name YOURS.js and you can modularize your code
by including multiple such lines.

It’s Work! Thanks