Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Darylxyx committed Jul 24, 2017
1 parent 57b1e88 commit 0d9b457
Show file tree
Hide file tree
Showing 38 changed files with 12 additions and 11 deletions.
Binary file modified .DS_Store
Binary file not shown.
5 changes: 0 additions & 5 deletions base.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ html, body, div, h1, h2, h3, h4, h5, h6, p, span, img, input, textarea, ul, ol,
padding: 0;
}

html, body {
font-size: 12px;
font-family: '微软雅黑', Arial, Helvetica;
}

ul, ol {
list-style-type: none;
}
Expand Down
Binary file modified panorama/.DS_Store
Binary file not shown.
16 changes: 11 additions & 5 deletions panorama/download.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
var http = require("http"),
fs = require("fs");

var imgPath = 'http://img.lexus.do2014.cn/images/es/car/spoke10a/Red_Mica_Crystal_Shine/';
var imgPath = 'http://open.youtu.qq.com/content/img/product/face/face_';

fs.mkdir('./downloadImg', (err) => {
if (err && err.code != 'EEXIST') return;
downloadImg();
});

function downloadImg() {
for (var i = 0; i < 60; i ++) {
var url = imgPath + i + ".jpg!t1024x450.jpg";
for (var i = 0; i < 16; i ++) {

var index = (function() {
var j = i + 1;
j = j < 10 ? '0'+j : j;
return j;
})();

var url = imgPath + index + ".jpg?v=2.0";
// console.log(url);
((i) => {
http.get(url, (res) => {
var out = fs.createWriteStream('./downloadImg/'+i+'.jpg', {
var out = fs.createWriteStream('./downloadImg/face_'+i+'.jpg', {
encoding: 'binary'
});

Expand Down
Binary file added panorama/downloadImg/.DS_Store
Binary file not shown.
Binary file added panorama/downloadImg/0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/11.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/13.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/14.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/15.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_11.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_13.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_14.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_15.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added panorama/downloadImg/face_3.jpg
Binary file added panorama/downloadImg/face_4.jpg
Binary file added panorama/downloadImg/face_5.jpg
Binary file added panorama/downloadImg/face_6.jpg
Binary file added panorama/downloadImg/face_7.jpg
Binary file added panorama/downloadImg/face_8.jpg
Binary file added panorama/downloadImg/face_9.jpg
2 changes: 1 addition & 1 deletion panorama/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ SubType.prototype = {
this.J ++;
}
}
console.log(this.matrix);
// console.log(this.matrix);
this.I = 0;
this.J = 0;
}
Expand Down

0 comments on commit 0d9b457

Please sign in to comment.