//左目
ViewerSelector.prototype.createDialogLeft_ = function(options) {
var container = document.createElement('div');
container.classList.add(CLASS_NAME);
container.style.display = 'none';
// Create an overlay that dims the background, and which goes away when you
// tap it.
var overlay = document.createElement('div');
var s = overlay.style;
s.position = 'fixed';
s.left = 0;
s.top = 0;
s.width = '50%';
s.height = '50%';
s.background = 'rgba(0, 0, 0, 0)';
s.pointerEvents = 'none';
//文字
var width = 400;
var dialog = document.createElement('div');
var s = dialog.style;
s.boxSizing = 'border-box';
s.position = 'fixed';
s.top = '40%';
s.left = '40%';
s.verticalAlign = "middle";
s.marginLeft = (-width/2) + 'px';
s.width = width/2 + 'px';
s.height = width/2 + 'px';
s.padding = '24px';
s.overflow = 'hidden';
s.background = '#fafafa';
s.backgroundColor = 'transparent';
s.fontFamily = "'Roboto', sans-serif";
//s.boxShadow = '0px 5px 20px #666';
//
var text = document.createElement('h1');
text.id = "info_panel21";
var s = text.style;
s.color = '#00ff00';
s.fontSize = '12px';
s.fontWeight = 'bold';
s.marginTop = 0;
s.marginBottom = '24px';
s.display = 'block';
s.border = "0px solid blue";
text.innerHTML = "";
//画像
var image = document.createElement('img');
image.src = "";
image.id = "image_panel21";
var s = image.style;
s.width = width*2 + 'px';
s.marginTop = 0;
s.marginBottom = '24px';
s.display = 'none';
//
container.appendChild(overlay);
container.appendChild(dialog);
dialog.appendChild(text);
dialog.appendChild(image);
return container;
};
//右目
ViewerSelector.prototype.createDialogRight_ = function(options) {
var container = document.createElement('div');
container.classList.add(CLASS_NAME);
container.style.display = 'block';
// Create an overlay that dims the background, and which goes away when you
// tap it.
var overlay = document.createElement('div');
var s = overlay.style;
s.position = 'fixed';
s.left = 0;
s.top = 0;
s.width = '50%';
s.height = '50%';
s.background = 'rgba(0, 0, 0, 0)';
s.pointerEvents = 'none';
var width = 400;
var dialog = document.createElement('div');
var s = dialog.style;
s.boxSizing = 'border-box';
s.position = 'fixed';
s.top = '40%';
s.left = '94%';
s.verticalAlign = "middle";
s.marginLeft = (-width/2) + 'px';
s.width = width/2 + 'px';
s.height = width/2 + 'px';
s.padding = '24px';
s.overflow = 'hidden';
s.background = '#fafafa';
s.backgroundColor = 'transparent';
s.fontFamily = "'Roboto', sans-serif";
//s.boxShadow = '0px 5px 20px #666';
//
var text = document.createElement('h1');
text.id = "info_panel22";
var s = text.style;
s.color = '#00ff00';
s.fontSize = '12px';
s.fontWeight = 'bold';
s.marginTop = 0;
s.marginBottom = '24px';
s.display = 'block';
s.border = "0px solid white";//補正用、s.leftの%を調整して左右でこの線がぴったり重なったらOK
text.innerHTML = "";
//
var image = document.createElement('img');
image.src = "";
image.id = "image_panel22";
var s = image.style;
s.width = width*2 + 'px';
s.marginTop = 0;
s.marginBottom = '24px';
s.display = 'none';
//
container.appendChild(overlay);
container.appendChild(dialog);
dialog.appendChild(text);
dialog.appendChild(image);
return container;
};
Leave a Reply