web頁面上提供3D效果,可以為頁面提供不少色彩,H5之后canvas 為webgl提供了基礎(chǔ),使得在web頁面使用JS也能寫出3D的效果,其中three.js作為封裝了圖形函數(shù) 的框架,為入門提供了方便,效果圖如下。
?
以上是官方例子中其中的三個(gè),沒接觸過的朋友肯定會(huì)覺得很神奇,事實(shí)上three.js能做的遠(yuǎn)不止這些,入門容易,如果靈活運(yùn)用到項(xiàng)目中就只能看各自的發(fā)揮了。
下面這個(gè)是自己做的一個(gè)項(xiàng)目中的效果
?地圖JSON如下,自己封裝了對(duì)室內(nèi)墻體生成的封裝,后期有空會(huì)詳細(xì)講解。
繪制3D室內(nèi) 案例
var zallMap2 = [
? ? {
? ? ? ? title: '',
? ? ? ? floorType:floorTypes[1],
? ? ? ? x: 0,
? ? ? ? y: 80,
? ? ? ? z: 0,
? ? ? ? width: 962,
? ? ? ? height: 866,
? ? ? ? color: "#142B46",
? ? ? ? textcolor: "black",
? ? ? ? bordercolor: "rgba(76, 181, 216, 0.85)",
? ? ? ? imageurl: 'images/Escalator.png',
? ? },
? ? {
? ? ? ? title: '',
? ? ? ? x: 480,
? ? ? ? y: 80,
? ? ? ? z: 0,
? ? ? ? width: 2,
? ? ? ? height: 866,
? ? ? ? color: "#30B2BB",
? ? ? ? textcolor: "black",
? ? ? ? bordercolor: "rgba(76, 181, 216, 0.85)",
? ? ? ? bspMesh: [
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 82,
? ? ? ? ? ? ? ? width: 38,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 17,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 73.7,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 120,
? ? ? ? ? ? ? ? width: 38,
? ? ? ? ? ? ? ? height: 5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 187.5,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 106.5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ? {
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 213,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 26.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 213,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 270,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 26.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 270,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 270,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 92,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 360,
? ? ? ? ? ? ? ? width: 36,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 360,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 59,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 402,
? ? ? ? ? ? ? ? width: 17,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 66,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 402,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 30,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 431,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 18,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 462,
? ? ? ? ? ? ? ? width: 36,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 461,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 69,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 525,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 26.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 525,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 648,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 26.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 648,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 648,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 106.5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 738,
? ? ? ? ? ? ? ? width: 36,
? ? ? ? ? ? ? ? height: 5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 0,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 779,
? ? ? ? ? ? ? ? width: 36,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 36,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 772,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 73.5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 17,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 73.5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 82,
? ? ? ? ? ? ? ? width: 38,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 108.5,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 106.5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 120,
? ? ? ? ? ? ? ? width: 38,
? ? ? ? ? ? ? ? height: 5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 213,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 950.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 213,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?
?? ??? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 269,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?
?? ??? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 950.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 269,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 269,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 149,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 359,
? ? ? ? ? ? ? ? width: 38,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 909,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 401,
? ? ? ? ? ? ? ? width: 17,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 896,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 401,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 30,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 430,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 18,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 460,
? ? ? ? ? ? ? ? width: 38,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 459,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 69,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 526,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 950.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 526,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 649,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 950.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 649,
? ? ? ? ? ? ? ? width: 11.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }, ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 649,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 106.5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 739,
? ? ? ? ? ? ? ? width: 38,
? ? ? ? ? ? ? ? height: 5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 773.5,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 73.5,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 924,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 780,
? ? ? ? ? ? ? ? width: 38,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 400,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 0,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 42,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 400,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 40,
? ? ? ? ? ? ? ? width: 172,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 570,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 0,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 42,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 400,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 824,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 42,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 400,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 824,
? ? ? ? ? ? ? ? width: 172,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },?
?? ??? ??? ?
?? ??? ??? ?{
? ? ? ? ? ? ? ? type: 'union',
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 570,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 824,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 42,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
?? ??? ??? ?
?? ??? ??? ?
?? ??? ??? ?
?? ??? ??? ?
?? ??? ??? ?
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'subtract',//門
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 480,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 141.5,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 37.6,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'subtract',//門
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 480,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 374.2,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 37.6,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'subtract',//門
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 480,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 454.6,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 37.6,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'subtract',//門
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 480,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 686,
? ? ? ? ? ? ? ? width: 2,
? ? ? ? ? ? ? ? height: 45,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }]
? ? },
? ? {
? ? ? ? title: '',
? ? ? ? x: 0,
? ? ? ? y: 80,
? ? ? ? z: 432,
? ? ? ? width: 962,
? ? ? ? height: 2,
? ? ? ? color: "#30B2BB",
? ? ? ? textcolor: "black",
? ? ? ? bordercolor: "rgba(76, 181, 216, 0.85)",
? ? ? ? bspMesh: [
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'subtract',//門
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 72.8,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 432,
? ? ? ? ? ? ? ? width: 37.8,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'subtract',//門
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 420,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 432,
? ? ? ? ? ? ? ? width: 37.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? },
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'subtract',//門
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',
? ? ? ? ? ? ? ? x: 502.5,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 432,
? ? ? ? ? ? ? ? width: 37.5,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }
? ? ? ? ? ? ,
? ? ? ? ? ? {
? ? ? ? ? ? ? ? type: 'subtract',//門
? ? ? ? ? ? ? ? geometryType: 'box', color: '#fff',文章來源:http://www.zghlxwxcb.cn/news/detail-454040.html
? ? ? ? ? ? ? ? x: 848,
? ? ? ? ? ? ? ? y: 80,
? ? ? ? ? ? ? ? z: 432,
? ? ? ? ? ? ? ? width: 40,
? ? ? ? ? ? ? ? height: 2,
? ? ? ? ? ? ? ? positionY: 0,
? ? ? ? ? ? }
? ? ? ? ]
? ? },
? ? {
? ? ? ? title: '',//wall 一層北墻體
? ? ? ? x: 0,
? ? ? ? y: 80,
? ? ? ? z: 0,
? ? ? ? width: 962,
? ? ? ? height: 2,
? ? ? ? color: "#30B2BB",
? ? ? ? textcolor: "black",
? ? },
? ? {
? ? ? ? title: '',//wall 西
? ? ? ? x: 0,
? ? ? ? y: 80,
? ? ? ? z: 2,
? ? ? ? width: 2,
? ? ? ? height: 864,
? ? ? ? color: "#30B2BB",
? ? ? ? textcolor: "black",
? ? ? ?
? ? }
? ? ,
? ? {
? ? ? ? title: '',//wall 東
? ? ? ? x: 960,
? ? ? ? y: 80,
? ? ? ? z: 0,
? ? ? ? width: 2,
? ? ? ? height: 864,
? ? ? ? color: "#30B2BB",
? ? ? ? textcolor: "black",
? ? }
? ? ,
? ? {
? ? ? ? title: '',//wall 南
? ? ? ? x: 0,
? ? ? ? y: 80,
? ? ? ? z: 864,
? ? ? ? width: 962,
? ? ? ? height: 2,
? ? ? ? color: "#30B2BB",
? ? ? ? textcolor: "black",
? ?
? ? }
];文章來源地址http://www.zghlxwxcb.cn/news/detail-454040.html
到了這里,關(guān)于web上構(gòu)建3d效果 基于three.js的實(shí)例的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!