在好例子网,分享、交流、成长!
您当前所在位置:首页CSS 开发实例HTML基础 → html 3d画廊源码下载(适用于做3d相册)

html 3d画廊源码下载(适用于做3d相册)

HTML基础

下载此实例
  • 开发语言:CSS
  • 实例大小:1.97M
  • 下载次数:510
  • 浏览次数:591
  • 发布时间:2016-06-29
  • 实例类别:HTML基础
  • 发 布 人:Testy
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 网页画廊

实例介绍

【实例简介】

【实例截图】

【核心代码】

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="true">
<meta name="msvalidate.01" content="B6C713C1F4E407129EDEF7810A8B9BCB" />
<meta name="description" content="">
<meta name="keywords" content="canvas,3D,perspective,texturing,gallery">
<link rel="stylesheet" href="./css/slider-wb.css">
<link rel="shortcut icon" href="/favicon.ico"/>
<title>3D相册</title>
<style>
html {
overflow: hidden;
-ms-touch-action: none;
-ms-content-zooming: none;
}
body {
position: absolute;
margin: 0px;
padding: 0px;
background: #fff;
width: 100%;
height: 100%;
}
#canvas {
position: absolute;
width: 100%;
height: 100%;
background: #fff;
}
</style>
<script src="./js/ge1doot.js"></script>
<script>




"use strict";

(function () {
/* ==== definitions ==== */
var diapo = [], layers = [], ctx, pointer, scr, camera, light, fps = 0, quality = [1,2],
// ---- poly constructor ----
Poly = function (parent, face) {
this.parent = parent;
this.ctx    = ctx;
this.color  = face.fill || false;
this.points = [];
if (!face.img) {
// ---- create points ----
for (var i = 0; i < 4; i ) {
this.points[i] = new ge1doot.transform3D.Point(
parent.pc.x (face.x[i] * parent.normalZ) (face.z[i] * parent.normalX),
parent.pc.y  face.y[i],
parent.pc.z (face.x[i] * parent.normalX) (-face.z[i] * parent.normalZ)
);
}
this.points[3].next = false;
}
},
// ---- diapo constructor ----
Diapo = function (path, img, structure) {
// ---- create image ----
this.img = new ge1doot.transform3D.Image(
this, path img.img, 1, {
isLoaded: function(img) {
img.parent.isLoaded = true;
img.parent.loaded(img);
}
}
);
this.visible  = false;
this.normalX  = img.nx;
this.normalZ  = img.nz;
// ---- point center ----
this.pc = new ge1doot.transform3D.Point(img.x, img.y, img.z);
// ---- target positions ----
this.tx = img.x (img.nx * Math.sqrt(camera.focalLength) * 20);
this.tz = img.z - (img.nz * Math.sqrt(camera.focalLength) * 20);
// ---- create polygons ----
this.poly = [];
for (var i = -1, p; p = structure[ i];) {
layers[i] = (p.img === true ? 1 : 2);
this.poly.push(
new Poly(this, p)
);
}
},
// ---- init section ----
init = function (json) {
// draw poly primitive
Poly.prototype.drawPoly = ge1doot.transform3D.drawPoly;
// ---- init screen ----
scr = new ge1doot.Screen({
container: "canvas"
});
ctx = scr.ctx;
scr.resize();
// ---- init pointer ----
pointer = new ge1doot.Pointer({
tap: function () {
if (camera.over) {
if (camera.over === camera.target.elem) {
// ---- return to the center ----
camera.target.x = 0;
camera.target.z = 0;
camera.target.elem = false;
} else {
// ---- goto diapo ----
camera.target.elem = camera.over;
camera.target.x = camera.over.tx;
camera.target.z = camera.over.tz;
// ---- adapt tesselation level to distance ----
for (var i = 0, d; d = diapo[i ];) {
var dx = camera.target.x - d.pc.x;
var dz = camera.target.z - d.pc.z;
var dist = Math.sqrt(dx * dx dz * dz);
var lev = (dist > 1500) ? quality[0] : quality[1];
d.img.setLevel(lev);
}
}
}
}
});
// ---- init camera ----
camera = new ge1doot.transform3D.Camera({
focalLength: Math.sqrt(scr.width) * 10,
easeTranslation: 0.025,
easeRotation: 0.06,
disableRz: true
}, {
move: function () {
this.over = false;
// ---- rotation ----
if (pointer.isDraging) {
this.target.elem = false;
this.target.ry = -pointer.Xi * 0.01;
this.target.rx = (pointer.Y - scr.height * 0.5) / (scr.height * 0.5);
} else {
if (this.target.elem) {
this.target.ry = Math.atan2(
this.target.elem.pc.x - this.x,
this.target.elem.pc.z - this.z
);
}
}
this.target.rx *= 0.9;
}
});
camera.z  = -10000;
camera.py = 0;
// ---- create images ----
for (var i = 0, img; img = json.imgdata[i ];) {
diapo.push(
new Diapo(
json.options.imagesPath, 
img, 
json.structure
)
);
} 
// ---- start engine ---- >>>
setInterval(function() {
quality = (fps > 50) ? [2,3] : [1,2];
fps = 0;
}, 1000);
run();
},
// ---- main loop ----
run = function () {
// ---- clear screen ----
ctx.clearRect(0, 0, scr.width, scr.height);
// ---- camera ----
camera.move();
// ---- draw layers ----
for (var k = -1, l; l = layers[ k];) {
light = false;
for (var i = 0, d; d = diapo[i ];) {
(l === 1 && d.draw()) || 
(d.visible && d.poly[k].draw());
}
}
// ---- cursor ----
if (camera.over && !pointer.isDraging) {
scr.setCursor("pointer");
} else {
scr.setCursor("move");
}
// ---- loop ----
fps ;
requestAnimFrame(run);
};
/* ==== prototypes ==== */
Poly.prototype.draw = function () {
// ---- color light ----
var c = this.color;
if (c.light || !light) {
var s = c.light ? this.parent.light : 1;
// ---- rgba color ----
light = "rgba("  
Math.round(c.r * s) "," 
Math.round(c.g * s) ","  
Math.round(c.b * s) "," (c.a || 1) ")";
ctx.fillStyle = light;
}
// ---- paint poly ----
if (!c.light || this.parent.light < 1) {
// ---- projection ----
for (
var i = 0; 
this.points[i ].projection();
);
this.drawPoly();
ctx.fill();
}
}
/* ==== image onload ==== */
Diapo.prototype.loaded = function (img) {
// ---- create points ----
var d = [-1,1,1,-1,1,1,-1,-1];
var w = img.texture.width  * 0.5;
var h = img.texture.height * 0.5;
for (var i = 0; i < 4; i ) {
img.points[i] = new ge1doot.transform3D.Point(
this.pc.x (w * this.normalZ * d[i]),
this.pc.y (h * d[i 4]),
this.pc.z (w * this.normalX * d[i])
);
}
}
/* ==== images draw ==== */
Diapo.prototype.draw = function () {
// ---- visibility ----
this.pc.projection();
if (this.pc.Z > -(camera.focalLength >> 1) && this.img.transform3D(true)) {
// ---- light ----
this.light = 0.5 Math.abs(this.normalZ * camera.cosY - this.normalX * camera.sinY) * 0.6;
// ---- draw image ----
this.visible = true;
this.img.draw();
// ---- test pointer inside ----
if (pointer.hasMoved || pointer.isDown) {
if (
this.img.isPointerInside(
pointer.X,
pointer.Y
)
) camera.over = this;
}
} else this.visible = false;
return true;
}
return {
// --- load data ----
load : function (data) {

ge1doot.loadJS(
"./js/imageTransform3D.js",
init, data
);
}
}
})().load({
imgdata:[
// north
{img:'./img/1.jpg', x:-1000, y:0, z:1500, nx:0, nz:1},
{img:'./img/2.jpg', x:0,     y:0, z:1500, nx:0, nz:1},
{img:'./img/3.jpg', x:1000,  y:0, z:1500, nx:0, nz:1},
// east
{img:'./img/4.jpg', x:1500,  y:0, z:1000, nx:-1, nz:0},
{img:'./img/5.jpg', x:1500,  y:0, z:0, nx:-1, nz:0},
{img:'./img/6.jpg', x:1500,  y:0, z:-1000, nx:-1, nz:0},
// south
{img:'./img/7.jpg', x:1000,  y:0, z:-1500, nx:0, nz:-1},
{img:'./img/8.jpg', x:0,     y:0, z:-1500, nx:0, nz:-1},
{img:'./img/9.jpg', x:-1000, y:0, z:-1500, nx:0, nz:-1},
// west
{img:'./img/10.jpg', x:-1500, y:0, z:-1000, nx:1, nz:0},
{img:'./img/11.jpg', x:-1500, y:0, z:0, nx:1, nz:0},
{img:'./img/12.jpg', x:-1500, y:0, z:1000, nx:1, nz:0}
],
structure:[
{
// wall
fill: {r:255, g:255, b:255, light:1},
x: [-1001,-490,-490,-1001],
z: [-500,-500,-500,-500],
y: [500,500,-500,-500]
},{
// wall
fill: {r:255, g:255, b:255, light:1},
x: [-501,2,2,-500],
z: [-500,-500,-500,-500],
y: [500,500,-500,-500]
},{
// wall
fill: {r:255, g:255, b:255, light:1},
x: [0,502,502,0],
z: [-500,-500,-500,-500],
y: [500,500,-500,-500]
},{
// wall
fill: {r:255, g:255, b:255, light:1},
x: [490,1002,1002,490],
z: [-500,-500,-500,-500],
y: [500,500,-500,-500]
},{
// shadow
fill: {r:0, g:0, b:0, a:0.2},
x: [-420,420,420,-420],
z: [-500,-500,-500,-500],
y: [150, 150,-320,-320]
},{
// shadow
fill: {r:0, g:0, b:0, a:0.2},
x: [-20,20,20,-20],
z: [-500,-500,-500,-500],
y: [250, 250,150,150]
},{
// shadow
fill: {r:0, g:0, b:0, a:0.2},
x: [-20,20,20,-20],
z: [-500,-500,-500,-500],
y: [-320, -320,-500,-500]
},{
// shadow
fill: {r:0, g:0, b:0, a:0.2},
x: [-20,20,10,-10],
z: [-500,-500,-100,-100],
y: [-500, -500,-500,-500]
},{
// base
fill: {r:32, g:32, b:32},
x: [-50,50,50,-50],
z: [-150,-150,-50,-50],
y: [-500,-500,-500,-500]
},{
// support
fill: {r:16, g:16, b:16},
x: [-10,10,10,-10],
z: [-100,-100,-100,-100],
y: [300,300,-500,-500]
},{
// frame
fill: {r:255, g:255, b:255},
x: [-320,-320,-320,-320],
z: [0,-20,-20,0],
y: [-190,-190,190,190]
},{
// frame
fill: {r:255, g:255, b:255},
x: [320,320,320,320],
z: [0,-20,-20,0],
y: [-190,-190,190,190]
},
{img:true},
{
// ceilingLight
fill: {r:255, g:128, b:0},
x: [-50,50,50,-50],
z: [450,450,550,550],
y: [500,500,500,500]
},{
// groundLight
fill: {r:255, g:128, b:0},
x: [-50,50,50,-50],
z: [450,450,550,550],
y: [-500,-500,-500,-500]
}
],
options:{
imagesPath: ""
}
});
</script>
<style type="text/css">
.adsbygoogle {display:none!important;display:none}</style>
</head>
<body>
<canvas id="canvas">你的浏览器不支持HTML5画布技术,请使用谷歌浏览器。</canvas>
<!-- dhteumeuleu nav menu -->
<div id="nav">
<input type="checkbox" name="nav-switch" id="nav-switch">
<label class="label" for="nav-switch">
<div class="container">
<div class="nav-on">
<ul class="menu">
<li class="home"><a href="">Home</a></li>
</ul>
</div>
<div class="nav-off">
<div id="icon"><div></div><div></div></div>
<h1 class="title">礼物<br>HTML5 3D相册</h1>
</div>
</div>
</label>
</div> 
<!-- end of dhteumeuleu nav menu -->

<div style="position: absolute; bottom: 20px; left: 20px;">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- 3d-album1 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:728px;height:15px"
     data-ad-client="ca-pub-9195052014444206"
     data-ad-slot="3393634591"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<script src='./js/jquery-1.7.2.min.js'></script>
<script src='./js/util.js'></script>
<a style='display:none' href=''>webhek</a> <script src='./js/ga.js'></script><script>var shares_wb = 1173;</script><script src='./js/wb.js'></script>
</body>
</html>

标签: 网页画廊

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警