WebGL简单例子

运行webgl,对浏览器和显卡都有要求。

ie 各版本均不支持。

可下载谷歌的chrome浏览器运行以下例子

复制代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>
  <script type="text/javascript" src=" http://mrdoob.github.com/three.js/build/three.min.js"></script>
  
  <title>WebGl</title>
  </head>
  
  <body>
  <div id="main">
  <script>
  var camera, scene, renderer;
  var geometry, material, mesh;
  init();
  animate();
  
  function init() {
      
      camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 1, 10000 );
      camera.position.z = 1000;
      scene = new THREE.Scene();
      //var pointLight =new THREE.PointLight(0x00FFAA);
        // pointLight.position.x = 10;
        //pointLight.position.y = 50;
        //pointLight.position.z = 130;      
      geometry = new THREE.CubeGeometry( 400, 400, 400 );
      material = new THREE.MeshBasicMaterial( { color: 0xff0000, wireframe: true, transparent: true, opacity: 0.8 } );
      mesh = new THREE.Mesh( geometry, material );
      scene.add( mesh );
  // scene.add(pointLight);
      renderer = new THREE.CanvasRenderer();
      renderer.setSize( window.innerWidth-100, window.innerHeight-100 );
      document.body.appendChild( renderer.domElement );
  }
  
  function animate() {
      // note: three.js includes requestAnimationFrame shim
      requestAnimationFrame( animate );
      mesh.rotation.x += 0.02;
      mesh.rotation.y += 0.02;
      renderer.render( scene, camera );
  }
  </script>
  </div>
  </body>
  </html>
复制代码

 显示的时候1个翻滚的正方体。

如下图

posted @   simadi  阅读(815)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)
点击右上角即可分享
微信分享提示