Commit ae05d67d by Masaru Abe

Merge remote-tracking branch 'origin/feature/1.6.4' into feature/1.7

Conflicts:
	abvw/common/js/common.js
	abvw/js/contentview.js
	abvw/js/contentview_CallApi.js
	abvw/js/contentview_Events.js
	abvw/js/contentview_GetData.js
	abvw/js/home.js
	abvw/js/share.js
parents 9e05cc9d c21e1f75
......@@ -14,100 +14,100 @@ AVWEB.hasErrorKey = 'AVW_HASERR';
*/
var UserEnvironment = function() {
this.appName = navigator.appName;
this.userAgent = navigator.userAgent;
this.os = checkOS(this.userAgent);
this.browser = checkBrowser(this.userAgent);
/* windows os check */
this.isWindows = function() {
return (this.os == "windows");
};
/* mac os check */
this.isMac = function() {
return (this.os == "mac");
};
/* ipad check */
this.isIpad = function() {
return (this.os == "ipad");
};
/* iphone check */
this.isIphone = function() {
return (this.os == "iphone");
};
/* android check */
this.isAndroid = function() {
return (this.os == "android");
};
/* iOS check */
this.isIos = function() {
if(this.os == "ipad" || this.os == "iphone"){
return true;
} else {
return false;
}
};
/* mobile check */
this.isMobile = function() {
if(this.os == "ipad" || this.os == "iphone" || this.os == "android"){
return true;
} else {
return false;
}
};
/** check operating system */
function checkOS(userAgent) {
if(userAgent.toLowerCase().indexOf("windows") >= 0) {
return "windows";
}
if(userAgent.toLowerCase().indexOf("mac") >= 0) {
if(userAgent.toLowerCase().indexOf("ipad") >= 0) {
return "ipad";
}
if(userAgent.toLowerCase().indexOf("iphone") >= 0) {
return "iphone";
}
return "mac";
}
if(userAgent.toLowerCase().indexOf("android") >= 0) {
return "android";
}
return "unknown";
};
/** check user browser */
function checkBrowser(userAgent) {
if(userAgent.toLowerCase().indexOf("msie") >= 0) {
return "msie";
}
if(userAgent.toLowerCase().indexOf("trident") >= 0) {
return "msie";
}
if(userAgent.toLowerCase().indexOf("firefox") >= 0) {
return "firefox";
}
if(userAgent.toLowerCase().indexOf("safari") >= 0) {
if(userAgent.toLowerCase().indexOf("chrome") >= 0) {
return "chrome";
}
return "safari";
}
if(userAgent.toLowerCase().indexOf("opera") >= 0) {
return "opera";
}
return "unknown";
};
this.appName = navigator.appName;
this.userAgent = navigator.userAgent;
this.os = checkOS(this.userAgent);
this.browser = checkBrowser(this.userAgent);
/* windows os check */
this.isWindows = function() {
return (this.os == "windows");
};
/* mac os check */
this.isMac = function() {
return (this.os == "mac");
};
/* ipad check */
this.isIpad = function() {
return (this.os == "ipad");
};
/* iphone check */
this.isIphone = function() {
return (this.os == "iphone");
};
/* android check */
this.isAndroid = function() {
return (this.os == "android");
};
/* iOS check */
this.isIos = function() {
if(this.os == "ipad" || this.os == "iphone"){
return true;
} else {
return false;
}
};
/* mobile check */
this.isMobile = function() {
if(this.os == "ipad" || this.os == "iphone" || this.os == "android"){
return true;
} else {
return false;
}
};
/** check operating system */
function checkOS(userAgent) {
if(userAgent.toLowerCase().indexOf("windows") >= 0) {
return "windows";
}
if(userAgent.toLowerCase().indexOf("mac") >= 0) {
if(userAgent.toLowerCase().indexOf("ipad") >= 0) {
return "ipad";
}
if(userAgent.toLowerCase().indexOf("iphone") >= 0) {
return "iphone";
}
return "mac";
}
if(userAgent.toLowerCase().indexOf("android") >= 0) {
return "android";
}
return "unknown";
};
/** check user browser */
function checkBrowser(userAgent) {
if(userAgent.toLowerCase().indexOf("msie") >= 0) {
return "msie";
}
if(userAgent.toLowerCase().indexOf("trident") >= 0) {
return "msie";
}
if(userAgent.toLowerCase().indexOf("firefox") >= 0) {
return "firefox";
}
if(userAgent.toLowerCase().indexOf("safari") >= 0) {
if(userAgent.toLowerCase().indexOf("chrome") >= 0) {
return "chrome";
}
return "safari";
}
if(userAgent.toLowerCase().indexOf("opera") >= 0) {
return "opera";
}
return "unknown";
};
};
/*
* User Settings Class Definition
*/
var UserSetting = function() {
this.US_KEY="AVWUS";
this.userSetting = this.load();
this.US_KEY="AVWUS";
this.userSetting = this.load();
};
/* get user setting from localStorage */
UserSetting.prototype.load = function () {
......@@ -125,169 +125,169 @@ UserSetting.prototype.load = function () {
};
/* store user setting */
UserSetting.prototype.set = function(key, value) {
//if(!this.userSetting) {
this.userSetting = this.load();
//}
var values = this.userSetting;
if(!values) {
values = { key: value };
} else {
values[key] = value;
}
var storage = window.localStorage;
if(storage) {
var jsonStr = JSON.stringify(values);
storage.setItem(this.US_KEY, jsonStr);
}
this.userSetting = values;
//if(!this.userSetting) {
this.userSetting = this.load();
//}
var values = this.userSetting;
if(!values) {
values = { key: value };
} else {
values[key] = value;
}
var storage = window.localStorage;
if(storage) {
var jsonStr = JSON.stringify(values);
storage.setItem(this.US_KEY, jsonStr);
}
this.userSetting = values;
};
/* grab user setting */
UserSetting.prototype.get = function(key) {
//if(!this.userSetting) {
this.userSetting = this.load();
//}
var values = this.userSetting;
if(values) {
return values[key];
}
return null;
//if(!this.userSetting) {
this.userSetting = this.load();
//}
var values = this.userSetting;
if(values) {
return values[key];
}
return null;
};
/* show user setting object list */
UserSetting.prototype.show = function(elmid) {
var storage = window.localStorage;
var tags = "<p>";
if(storage) {
var value = storage.getItem(this.US_KEY);
if(value) {
var js = JSON.parse(value);
$.each(js, function(k, v) {
tags = tags + "<b>" + k + "</b>:" + v + "<br />";
});
}
tags = tags + "</p>";
$(elmid).html(tags);
}
var storage = window.localStorage;
var tags = "<p>";
if(storage) {
var value = storage.getItem(this.US_KEY);
if(value) {
var js = JSON.parse(value);
$.each(js, function(k, v) {
tags = tags + "<b>" + k + "</b>:" + v + "<br />";
});
}
tags = tags + "</p>";
$(elmid).html(tags);
}
};
/* ユーザ設定のキーリストを取得 */
UserSetting.prototype.keys = function() {
var storage = window.localStorage;
var keyList = [];
if(storage) {
var value = storage.getItem(this.US_KEY);
if(value) {
var js = JSON.parse(value);
var i = 0;
$.each(js, function(k, v) {
keyList[i++] = k;
});
}
return keyList;
}
return null;
var storage = window.localStorage;
var keyList = [];
if(storage) {
var value = storage.getItem(this.US_KEY);
if(value) {
var js = JSON.parse(value);
var i = 0;
$.each(js, function(k, v) {
keyList[i++] = k;
});
}
return keyList;
}
return null;
};
/* ユーザ設定を削除 */
UserSetting.prototype.remove = function(key) {
var storage = window.localStorage;
if(storage) {
var value = storage.getItem(this.US_KEY);
if(value) {
var js = JSON.parse(value);
if(js) {
delete js[key];
storage.setItem(this.US_KEY, JSON.stringify(js));
}
}
}
var storage = window.localStorage;
if(storage) {
var value = storage.getItem(this.US_KEY);
if(value) {
var js = JSON.parse(value);
if(js) {
delete js[key];
storage.setItem(this.US_KEY, JSON.stringify(js));
}
}
}
};
/* ユーザ設定をすべて削除 */
UserSetting.prototype.removeAll = function() {
var storage = window.localStorage;
if(storage) {
storage.remove(this.US_KEY);
}
var storage = window.localStorage;
if(storage) {
storage.remove(this.US_KEY);
}
};
/*
* User Session Class Definition
*/
var UserSession = function() {
this.available = false;
this.available = false;
};
/* Initialize User Session */
UserSession.prototype.init = function(option) {
this.available = false;
if(option == 'restore') {
var value = null;
try {
value = this._get('init');
} catch(e) {
value = null;
} finally {
if(value) {
this.available = true;
}
}
} else {
this.set("init", new Date().toLocaleString());
this.available = true;
}
this.available = false;
if(option == 'restore') {
var value = null;
try {
value = this._get('init');
} catch(e) {
value = null;
} finally {
if(value) {
this.available = true;
}
}
} else {
this.set("init", new Date().toLocaleString());
this.available = true;
}
};
/* store key, value item to user session */
UserSession.prototype.set = function(key, value) {
var storage = window.sessionStorage;
if(storage) {
if(this.available == false) {
if(key == "init") {
storage.setItem("AVWS_" + key, value);
} else {
throw new Error("Session destoryed.");
}
} else {
storage.setItem("AVWS_" + key, value);
}
}
var storage = window.sessionStorage;
if(storage) {
if(this.available == false) {
if(key == "init") {
storage.setItem("AVWS_" + key, value);
} else {
throw new Error("Session destoryed.");
}
} else {
storage.setItem("AVWS_" + key, value);
}
}
};
/* get session item value */
UserSession.prototype.get = function(key) {
var value = null;
if(this.available) {
value = this._get(key);
} else {
throw new Error("Session Destroyed.");
}
return value;
var value = null;
if(this.available) {
value = this._get(key);
} else {
throw new Error("Session Destroyed.");
}
return value;
};
/* get item value from session storage */
UserSession.prototype._get = function(key) {
var storage = window.sessionStorage;
var value = null;
if(storage) {
value = storage.getItem("AVWS_" + key);
}
return value;
var storage = window.sessionStorage;
var value = null;
if(storage) {
value = storage.getItem("AVWS_" + key);
}
return value;
};
/* destroy user session */
UserSession.prototype.destroy = function() {
var storage = window.sessionStorage;
if(storage) {
storage.clear();
this.available = false;
}
var storage = window.sessionStorage;
if(storage) {
storage.clear();
this.available = false;
}
};
/* show user session object list */
UserSession.prototype.show = function(elmid) {
var storage = window.sessionStorage;
var tags = "<p>";
if(storage) {
for(var i = 0; i < storage.length; i++) {
var key = storage.key(i);
var value = storage.getItem(key);
tags = tags + "<b>" + key + "</b>:" + value + "<br />";
}
tags = tags + "</p>";
$(elmid).html(tags);
}
var storage = window.sessionStorage;
var tags = "<p>";
if(storage) {
for(var i = 0; i < storage.length; i++) {
var key = storage.key(i);
var value = storage.getItem(key);
tags = tags + "<b>" + key + "</b>:" + value + "<br />";
}
tags = tags + "</p>";
$(elmid).html(tags);
}
};
/*
* Variables
......@@ -301,13 +301,13 @@ AVWEB.avwSysSettingObj = null;
$(function () {
// システム設定ファイルの配置先パスの決定
var location = window.location.toString().toLowerCase();
var sysFile = '';
if (location.indexOf('/abvw') < 0) {
sysFile = './abvw/common/json/sys/conf.json';
} else {
var location = window.location.toString().toLowerCase();
var sysFile = '';
if (location.indexOf('/abvw') < 0) {
sysFile = './abvw/common/json/sys/conf.json';
} else {
sysFile = './common/json/sys/conf.json';
}
}
// システム設定ファイルを読み込む
$.ajax({
......@@ -331,7 +331,7 @@ $(function () {
/* get system setting object */
AVWEB.avwSysSetting = function() {
return AVWEB.avwSysSettingObj;
return AVWEB.avwSysSettingObj;
};
///* get user environment object */
......@@ -343,166 +343,166 @@ AVWEB.avwSysSetting = function() {
//};
/* get user session object */
AVWEB.avwUserSession = function() {
if(!AVWEB.avwUserSessionObj) {
var obj = new UserSession();
obj.init('restore');
if(obj.available) {
AVWEB.avwUserSessionObj = obj;
return AVWEB.avwUserSessionObj;
} else {
return null;
}
}
return AVWEB.avwUserSessionObj;
if(!AVWEB.avwUserSessionObj) {
var obj = new UserSession();
obj.init('restore');
if(obj.available) {
AVWEB.avwUserSessionObj = obj;
return AVWEB.avwUserSessionObj;
} else {
return null;
}
}
return AVWEB.avwUserSessionObj;
};
/* create user session object */
AVWEB.avwCreateUserSession = function() {
if(AVWEB.avwUserSessionObj) {
AVWEB.avwUserSessionObj.destroy();
} else {
AVWEB.avwUserSessionObj = new UserSession();
AVWEB.avwUserSessionObj.init();
}
return AVWEB.avwUserSessionObj;
if(AVWEB.avwUserSessionObj) {
AVWEB.avwUserSessionObj.destroy();
} else {
AVWEB.avwUserSessionObj = new UserSession();
AVWEB.avwUserSessionObj.init();
}
return AVWEB.avwUserSessionObj;
};
/* check Login or not */
AVWEB.avwCheckLogin = function(option) {
var userSession = AVWEB.avwUserSession();
if(!userSession) {
/* エラー画面を表示 */
var tags = '<div id="avw-auth-error">' +
'<div style="display:table; width:100%; height:100%;">' +
'<div style="display:table-cell; text-align:center; vertical-align:middle;">' +
'<p><h4>Authentication error</h4>Please use it after login.</p>' +
'<div><button id="avw-unauth-ok">OK</button></div>' +
'</div></div></div>';
$('body').prepend(tags);
$('#avw-auth-error').css({
'opacity': 1,
'position': 'fixed',
'top': '0',
'left': '0',
'width': $(window).width(),
'height': $(window).height(),
'zIndex': '10000'
});
// resize error page
$(window).resize(function() {
$('#avw-auth-error').css( {
'width': $(window).width(),
'height': $(window).height()
});
});
var returnPage;
if(option) {
returnPage = option
} else {
var sysSetting = AVWEB.avwSysSetting();
returnPage = sysSetting.loginPage;
}
/* ログイン画面に戻る */
$('#avw-unauth-ok').click(function() {
window.location = returnPage;
});
return false;
}
return true;
var userSession = AVWEB.avwUserSession();
if(!userSession) {
/* エラー画面を表示 */
var tags = '<div id="avw-auth-error">' +
'<div style="display:table; width:100%; height:100%;">' +
'<div style="display:table-cell; text-align:center; vertical-align:middle;">' +
'<p><h4>Authentication error</h4>Please use it after login.</p>' +
'<div><button id="avw-unauth-ok">OK</button></div>' +
'</div></div></div>';
$('body').prepend(tags);
$('#avw-auth-error').css({
'opacity': 1,
'position': 'fixed',
'top': '0',
'left': '0',
'width': $(window).width(),
'height': $(window).height(),
'zIndex': '10000'
});
// resize error page
$(window).resize(function() {
$('#avw-auth-error').css( {
'width': $(window).width(),
'height': $(window).height()
});
});
var returnPage;
if(option) {
returnPage = option
} else {
var sysSetting = AVWEB.avwSysSetting();
returnPage = sysSetting.loginPage;
}
/* ログイン画面に戻る */
$('#avw-unauth-ok').click(function() {
window.location = returnPage;
});
return false;
}
return true;
};
/* get user setting object */
AVWEB.avwUserSetting = function() {
if(AVWEB.avwUserSettingObj == null) {
AVWEB.avwUserSettingObj = new UserSetting();
}
return AVWEB.avwUserSettingObj;
if(AVWEB.avwUserSettingObj == null) {
AVWEB.avwUserSettingObj = new UserSetting();
}
return AVWEB.avwUserSettingObj;
};
/* CMS API Call(async. call) */
AVWEB.avwCmsApi = function(accountPath, apiName, type, params, success, error) {
//var sysSettings = AVWEB.avwSysSetting();
AVWEB._callCmsApi(ClientData.conf_apiUrl(), accountPath, apiName, type, params, true, success, error);
//var sysSettings = AVWEB.avwSysSetting();
AVWEB._callCmsApi(ClientData.conf_apiUrl(), accountPath, apiName, type, params, true, success, error);
};
/* CMS API Call(sync. call) */
AVWEB.avwCmsApiSync = function(accountPath, apiName, type, params, success, error) {
//var sysSettings = AVWEB.avwSysSetting();
AVWEB._callCmsApi(ClientData.conf_apiUrl(), accountPath, apiName, type, params, false, success, error);
//var sysSettings = AVWEB.avwSysSetting();
AVWEB._callCmsApi(ClientData.conf_apiUrl(), accountPath, apiName, type, params, false, success, error);
};
/* CMS API Call(async. call) */
AVWEB.avwCmsApiWithUrl = function(url, accountPath, apiName, type, params, success, error) {
AVWEB._callCmsApi(url, accountPath, apiName, type, params, true, success, error);
AVWEB._callCmsApi(url, accountPath, apiName, type, params, true, success, error);
};
/* CMS API Call(sync. call) */
AVWEB.avwCmsApiSyncWithUrl = function(url, accountPath, apiName, type, params, success, error) {
AVWEB._callCmsApi(url, accountPath, apiName, type, params, false, success, error);
AVWEB._callCmsApi(url, accountPath, apiName, type, params, false, success, error);
};
/* CMS API Call */
AVWEB._callCmsApi = function(url, accountPath, apiName, type, params, async, success, error) {
// アプリケーション設定取得
var sysSettings = AVWEB.avwSysSetting();
// url 構築
var apiUrl;
if(!url) {
apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
} else {
apiUrl = url;
}
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath);
}
apiUrl = apiUrl + '/' + apiName + '/';
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
params.pid = CONTENTVIEW_GENERAL.pid;
}
//----------------------------------------------------------------------------------
// for IE: 暫定的に対応 (これをすることでIE9でもCrossDomainリクエストが可能だがアクセスのたびに警告が出る)
$.support.cors = true;
//----------------------------------------------------------------------------------
// ajax によるAPIの実行(json)
$.ajax( {
async: (async) ? async : false,
type: (type) ? type : 'get',
url: apiUrl,
cache: false,
dataType: 'json',
data: params,
crossDomain: true,
beforeSend: function(xhr) {
/*
* ABook viewer for WEB 用のリクエストヘッダに、以下のヘッダを付加する
* X-AGT-AppId: ABookWebCL
* X-AGT-AppVersion: 0.0.1
*/
xhr.setRequestHeader('X-AGT-AppId', sysSettings.appName);
xhr.setRequestHeader('X-AGT-AppVersion', sysSettings.appVersion);
},
success: function(data) {
if(success) {
success(data);
}
},
error: function(xmlHttpRequest, txtStatus, errorThrown) {
/* call custom error process */
if(error) {
error(xmlHttpRequest, txtStatus, errorThrown);
} else {
if(xmlHttpRequest.status == 403) {
AVWEB.showSystemError('sysErrorCallApi02');
}
else {
AVWEB.showSystemError();
}
}
}
});
// アプリケーション設定取得
var sysSettings = AVWEB.avwSysSetting();
// url 構築
var apiUrl;
if(!url) {
apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
} else {
apiUrl = url;
}
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath);
}
apiUrl = apiUrl + '/' + apiName + '/';
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
params.pid = CONTENTVIEW_GENERAL.pid;
}
//----------------------------------------------------------------------------------
// for IE: 暫定的に対応 (これをすることでIE9でもCrossDomainリクエストが可能だがアクセスのたびに警告が出る)
$.support.cors = true;
//----------------------------------------------------------------------------------
// ajax によるAPIの実行(json)
$.ajax( {
async: (async) ? async : false,
type: (type) ? type : 'get',
url: apiUrl,
cache: false,
dataType: 'json',
data: params,
crossDomain: true,
beforeSend: function(xhr) {
/*
* ABook viewer for WEB 用のリクエストヘッダに、以下のヘッダを付加する
* X-AGT-AppId: ABookWebCL
* X-AGT-AppVersion: 0.0.1
*/
xhr.setRequestHeader('X-AGT-AppId', sysSettings.appName);
xhr.setRequestHeader('X-AGT-AppVersion', sysSettings.appVersion);
},
success: function(data) {
if(success) {
success(data);
}
},
error: function(xmlHttpRequest, txtStatus, errorThrown) {
/* call custom error process */
if(error) {
error(xmlHttpRequest, txtStatus, errorThrown);
} else {
if(xmlHttpRequest.status == 403) {
AVWEB.showSystemError('sysErrorCallApi02');
}
else {
AVWEB.showSystemError();
}
}
}
});
};
......@@ -510,47 +510,47 @@ AVWEB._callCmsApi = function(url, accountPath, apiName, type, params, async, suc
/* CMS API Call */
AVWEB._callCmsApiWhen = function(accountPath, apiName, type, params ) {
// アプリケーション設定取得
var sysSettings = AVWEB.avwSysSetting();
// url 構築
var apiUrl = ClientData.conf_apiUrl();
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath);
}
apiUrl = apiUrl + '/' + apiName + '/';
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
params.pid = CONTENTVIEW_GENERAL.pid;
}
//----------------------------------------------------------------------------------
// for IE: 暫定的に対応 (これをすることでIE9でもCrossDomainリクエストが可能だがアクセスのたびに警告が出る)
$.support.cors = true;
//----------------------------------------------------------------------------------
// ajax によるAPIの実行(json)
var ajaxObj = $.ajax( {
async: true,
type: (type) ? type : 'get',
url: apiUrl,
cache: false,
dataType: 'json',
data: params,
crossDomain: true,
beforeSend: function(xhr) {
/*
* ABook viewer for WEB 用のリクエストヘッダに、以下のヘッダを付加する
* X-AGT-AppId: ABookWebCL
* X-AGT-AppVersion: 0.0.1
*/
xhr.setRequestHeader('X-AGT-AppId', sysSettings.appName);
xhr.setRequestHeader('X-AGT-AppVersion', sysSettings.appVersion);
}
});
return ajaxObj;
// アプリケーション設定取得
var sysSettings = AVWEB.avwSysSetting();
// url 構築
var apiUrl = ClientData.conf_apiUrl();
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath);
}
apiUrl = apiUrl + '/' + apiName + '/';
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
params.pid = CONTENTVIEW_GENERAL.pid;
}
//----------------------------------------------------------------------------------
// for IE: 暫定的に対応 (これをすることでIE9でもCrossDomainリクエストが可能だがアクセスのたびに警告が出る)
$.support.cors = true;
//----------------------------------------------------------------------------------
// ajax によるAPIの実行(json)
var ajaxObj = $.ajax( {
async: true,
type: (type) ? type : 'get',
url: apiUrl,
cache: false,
dataType: 'json',
data: params,
crossDomain: true,
beforeSend: function(xhr) {
/*
* ABook viewer for WEB 用のリクエストヘッダに、以下のヘッダを付加する
* X-AGT-AppId: ABookWebCL
* X-AGT-AppVersion: 0.0.1
*/
xhr.setRequestHeader('X-AGT-AppId', sysSettings.appName);
xhr.setRequestHeader('X-AGT-AppVersion', sysSettings.appVersion);
}
});
return ajaxObj;
};
......@@ -632,104 +632,103 @@ var ImageDataScheme = function () {
*/
AVWEB.avwGrabContentPageImage = function(accountPath, params, success, error) {
// API実行準備
var sysSettings = AVWEB.avwSysSetting();
var apiName = 'webContentPageImage'; // API名
//url 構築
var apiUrl;
apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath)
}
apiUrl = apiUrl + '/' + apiName + '/';
// 送信パラメータの構築
var requestParams = 'contentId=' + params.contentId + '&sid=' + params.sid + '&pageNo=' + params.pageNo;
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
requestParams = requestParams + '&pid=' + CONTENTVIEW_GENERAL.pid;
}
apiUrl += '?' + requestParams + '&isBase64=true';
if( ClientData.isStreamingMode() ){
apiUrl += '&isStreaming=true';
}
// バイナリ形式で画像イメージを取得し、Base64にエンコードする
var xmlHttp;
var ie = false;
//if(window.ActiveXObject) {
// xmlHttp = new ActiveXObject('Msxml2.XMLHTTP');
// ie = true;
//} else {
//xmlHttp = new XMLHttpRequest();
//}
//IE10以降はXMLHttpRequestを優先して使う
try{
xmlHttp = new XMLHttpRequest();
}catch(e){
try{
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
ie = true;
}catch(e){
AVWEB.showSystemError();
return;
}
}
xmlHttp.open('get', apiUrl);
xmlHttp.setRequestHeader('X-AGT-AppId', sysSettings.appName);
xmlHttp.setRequestHeader('X-AGT-AppVersion', sysSettings.appVersion);
/*
if(xmlHttp.overrideMimeType) {
// for FF, Chrome, Safari
xmlHttp.overrideMimeType('text/plain; charset=x-user-defined');
}
*/
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState == 4) {
if (xmlHttp.status == 200) {
/*
//base64 encode
var ids = new ImageDataScheme();
var src; // Image Data URI
if(ie) {
// for IE
src = ids.convImageToDataScheme(xmlHttp.responseBody, ie);
} else {
// for FF, Chrome, Safari
src = ids.convImageToDataScheme(xmlHttp.responseText, ie);
}
*/
var src; // Image Data URI
/*
if(ie) {
// for IE
src = 'data:image/png;base64,' + xmlHttp.responseBody;
} else {
// for FF, Chrome, Safari
src = 'data:image/png;base64,' + xmlHttp.responseText;
}
*/
src = 'data:image/png;base64,' + xmlHttp.responseText;
if (success) {
success(src);
}
} else {
if (error) {
error(xmlHttp, xmlHttp.status, xmlHttp.statusText);
} else {
AVWEB.avwLog(xmlHttp.status + ' ' + xmlHttp.statusText);
}
}
}
};
xmlHttp.send();
// API実行準備
var sysSettings = AVWEB.avwSysSetting();
var apiName = 'webContentPageImage'; // API名
//url 構築
var apiUrl;
apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath)
}
apiUrl = apiUrl + '/' + apiName + '/';
// 送信パラメータの構築
var requestParams = 'contentId=' + params.contentId + '&sid=' + params.sid + '&pageNo=' + params.pageNo;
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
requestParams = requestParams + '&pid=' + CONTENTVIEW_GENERAL.pid;
}
apiUrl += '?' + requestParams + '&isBase64=true';
if( ClientData.isStreamingMode() ){
apiUrl += '&isStreaming=true';
}
// バイナリ形式で画像イメージを取得し、Base64にエンコードする
var xmlHttp;
var ie = false;
//if(window.ActiveXObject) {
// xmlHttp = new ActiveXObject('Msxml2.XMLHTTP');
// ie = true;
//} else {
//xmlHttp = new XMLHttpRequest();
//}
//IE10以降はXMLHttpRequestを優先して使う
try{
xmlHttp = new XMLHttpRequest();
}catch(e){
try{
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
ie = true;
}catch(e){
AVWEB.showSystemError();
return;
}
}
xmlHttp.open('get', apiUrl);
xmlHttp.setRequestHeader('X-AGT-AppId', sysSettings.appName);
xmlHttp.setRequestHeader('X-AGT-AppVersion', sysSettings.appVersion);
/*
if(xmlHttp.overrideMimeType) {
// for FF, Chrome, Safari
xmlHttp.overrideMimeType('text/plain; charset=x-user-defined');
}
*/
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState == 4) {
if (xmlHttp.status == 200) {
/*
//base64 encode
var ids = new ImageDataScheme();
var src; // Image Data URI
if(ie) {
// for IE
src = ids.convImageToDataScheme(xmlHttp.responseBody, ie);
} else {
// for FF, Chrome, Safari
src = ids.convImageToDataScheme(xmlHttp.responseText, ie);
}
*/
var src; // Image Data URI
/*
if(ie) {
// for IE
src = 'data:image/png;base64,' + xmlHttp.responseBody;
} else {
// for FF, Chrome, Safari
src = 'data:image/png;base64,' + xmlHttp.responseText;
}
*/
src = 'data:image/png;base64,' + xmlHttp.responseText;
if (success) {
success(src);
}
} else {
if (error) {
error(xmlHttp, xmlHttp.status, xmlHttp.statusText);
} else {
AVWEB.avwLog(xmlHttp.status + ' ' + xmlHttp.statusText);
}
}
}
};
xmlHttp.send();
};
/*
......@@ -743,232 +742,232 @@ AVWEB.avwGrabContentPageImage = function(accountPath, params, success, error) {
*/
AVWEB.avwUploadBackupFile = function(accountPath, params, async, success, error) {
/* API実行準備*/
var sysSettings = AVWEB.avwSysSetting();
var apiName = 'uploadBackupFile'; // API名
//url 構築
var apiUrl;
apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath)
}
apiUrl = apiUrl + '/' + apiName + '/';
/* POST(multipart/form-data)送信準備 */
var body = '';
var boundary = '';
// boundaryを構築
var date = new Date();
boundary = '------------------------' + date.getMilliseconds()
+ (date.getMonth() + 1)
+ date.getMinutes()
+ date.getFullYear()
+ date.getDay()
+ date.getHours()
+ date.getSeconds();
// bodyを構築
for(var i = 0; i < params.length; i++) {
var item = params[i];
body += '--' + boundary + '\r\n';
body += 'Content-Disposition: form-data; name="' + item.name + '"';
if(item.fileName) {
body += '; filename="' + item.fileName + '"\r\n';
} else {
body += '\r\n';
}
if(item.contentType) {
body += 'Content-Type="' + item.contentType + '"\r\n';
}
body += '\r\n';
body += item.content + '\r\n';
}
body += '--' + boundary + '--\r\n';
// ajax によるAPIの実行(json)
$.ajax( {
async: (async) ? async : false,
type: 'post',
url: apiUrl,
data: body,
beforeSend: function(xhr) {
/*
* ABook viewer for WEB 用のリクエストヘッダに、以下のヘッダを付加する
* X-AGT-AppId: ABookWebCL
* X-AGT-AppVersion: 0.0.1
*/
xhr.setRequestHeader('X-AGT-AppId', sysSettings.appName);
xhr.setRequestHeader('X-AGT-AppVersion', sysSettings.appVersion);
/*
* uploadBackupFileは multipart/form-data でPOST送信する
*/
/* API実行準備*/
var sysSettings = AVWEB.avwSysSetting();
var apiName = 'uploadBackupFile'; // API名
//url 構築
var apiUrl;
apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath)
}
apiUrl = apiUrl + '/' + apiName + '/';
/* POST(multipart/form-data)送信準備 */
var body = '';
var boundary = '';
// boundaryを構築
var date = new Date();
boundary = '------------------------' + date.getMilliseconds()
+ (date.getMonth() + 1)
+ date.getMinutes()
+ date.getFullYear()
+ date.getDay()
+ date.getHours()
+ date.getSeconds();
// bodyを構築
for(var i = 0; i < params.length; i++) {
var item = params[i];
body += '--' + boundary + '\r\n';
body += 'Content-Disposition: form-data; name="' + item.name + '"';
if(item.fileName) {
body += '; filename="' + item.fileName + '"\r\n';
} else {
body += '\r\n';
}
if(item.contentType) {
body += 'Content-Type="' + item.contentType + '"\r\n';
}
body += '\r\n';
body += item.content + '\r\n';
}
body += '--' + boundary + '--\r\n';
// ajax によるAPIの実行(json)
$.ajax( {
async: (async) ? async : false,
type: 'post',
url: apiUrl,
data: body,
beforeSend: function(xhr) {
/*
* ABook viewer for WEB 用のリクエストヘッダに、以下のヘッダを付加する
* X-AGT-AppId: ABookWebCL
* X-AGT-AppVersion: 0.0.1
*/
xhr.setRequestHeader('X-AGT-AppId', sysSettings.appName);
xhr.setRequestHeader('X-AGT-AppVersion', sysSettings.appVersion);
/*
* uploadBackupFileは multipart/form-data でPOST送信する
*/
xhr.setRequestHeader('Content-Type', 'multipart/form-data; boundary=' + boundary);
//xhr.setRequestHeader('Content-Length', AVWEB.getByte(body));
},
success: function(data) {
if(success) {
success(data);
}
},
error: function(xmlHttpRequest, txtStatus, errorThrown) {
/* call custom error process */
if(error) {
error(xmlHttpRequest, txtStatus, errorThrown);
} else {
AVWEB.showSystemError();
}
}
});
},
success: function(data) {
if(success) {
success(data);
}
},
error: function(xmlHttpRequest, txtStatus, errorThrown) {
/* call custom error process */
if(error) {
error(xmlHttpRequest, txtStatus, errorThrown);
} else {
AVWEB.showSystemError();
}
}
});
};
/* show system error message */
AVWEB.showSystemError = function(textId) {
if(AVWEB.avwHasError()) {
// すでにエラー状態であればエラーを表示しない
return;
} else {
// エラー状態にセット
AVWEB.avwSetErrorState();
}
if( !textId ){
textId = 'sysErrorCallApi01';
}
// create DOM element for showing error message
var errMes = I18N.i18nText(textId);
var tags = '<div id="avw-sys-error"></div>';
//$('body').prepend(tags);
$('body').append(tags);
$('#avw-sys-error').css({
'opacity': 0.7,
'position': 'fixed',
'top': '0',
'left': '0',
'width': $(window).width(),
'height': $(window).height(),
'background': '#999',
'z-index': 90000
});
// resize error page
$(window).resize(function() {
$('#avw-sys-error').css( {
'width': $(window).width(),
'height': $(window).height()
});
});
// show error messages
$().toastmessage({ position: 'middle-center' });
$().toastmessage('showToast', {
type: 'error',
sticky: true,
text: errMes,
close: function() {
if( ClientData.isStreamingMode() == false && COMMON.isAuthoringPreview() == false){
//ストリーミングでなければログアウト時と同じ後始末処理をしてログイン画面に戻す
if( !HEADER.webLogoutEvent() ){
//ログアウト出来なかった
SessionStorageUtils.clear();
//カスタムURI起動対応のため sidのバックアップは消さない
AVWEB.avwUserSetting().remove(COMMON.Keys.userInfo_sid);
//AVWEB.avwUserSetting().remove(COMMON.Keys.userInfo_sid_bak);
AVWEB.avwScreenMove(COMMON.ScreenIds.Login);
}
}
}
});
if(AVWEB.avwHasError()) {
// すでにエラー状態であればエラーを表示しない
return;
} else {
// エラー状態にセット
AVWEB.avwSetErrorState();
}
if( !textId ){
textId = 'sysErrorCallApi01';
}
// create DOM element for showing error message
var errMes = I18N.i18nText(textId);
var tags = '<div id="avw-sys-error"></div>';
//$('body').prepend(tags);
$('body').append(tags);
$('#avw-sys-error').css({
'opacity': 0.7,
'position': 'fixed',
'top': '0',
'left': '0',
'width': $(window).width(),
'height': $(window).height(),
'background': '#999',
'z-index': 90000
});
// resize error page
$(window).resize(function() {
$('#avw-sys-error').css( {
'width': $(window).width(),
'height': $(window).height()
});
});
// show error messages
$().toastmessage({ position: 'middle-center' });
$().toastmessage('showToast', {
type: 'error',
sticky: true,
text: errMes,
close: function() {
if( ClientData.isStreamingMode() == false && COMMON.isAuthoringPreview() == false){
//ストリーミングでなければログアウト時と同じ後始末処理をしてログイン画面に戻す
if( !HEADER.webLogoutEvent() ){
//ログアウト出来なかった
SessionStorageUtils.clear();
//カスタムURI起動対応のため sidのバックアップは消さない
AVWEB.avwUserSetting().remove(COMMON.Keys.userInfo_sid);
//AVWEB.avwUserSetting().remove(COMMON.Keys.userInfo_sid_bak);
AVWEB.avwScreenMove(COMMON.ScreenIds.Login);
}
}
}
});
/*
$().toastmessage('showToast', {
type: 'error',
sticky: true,
text: errMes,
close: function() { isShowErrorMessage = false; }
});
$().toastmessage('showToast', {
type: 'error',
sticky: true,
text: errMes,
close: function() { isShowErrorMessage = false; }
});
*/
};
/* エラー状態を取得 */
AVWEB.avwHasError = function() {
var session = window.sessionStorage;
var isError = false;
if(session) {
isError = session.getItem(AVWEB.hasErrorKey);
}
return (isError == 'true');
var session = window.sessionStorage;
var isError = false;
if(session) {
isError = session.getItem(AVWEB.hasErrorKey);
}
return (isError == 'true');
};
/* エラー状態にセット */
AVWEB.avwSetErrorState = function() {
var session = window.sessionStorage;
if(session) {
session.setItem(AVWEB.hasErrorKey, true);
}
var session = window.sessionStorage;
if(session) {
session.setItem(AVWEB.hasErrorKey, true);
}
};
/* エラー状態をクリア */
AVWEB.avwClearError = function() {
var session = window.sessionStorage;
if(session) {
session.setItem(AVWEB.hasErrorKey, false);
}
var session = window.sessionStorage;
if(session) {
session.setItem(AVWEB.hasErrorKey, false);
}
};
/* ブラウザunload時に警告メッセージの出力設定を行う関数 */
AVWEB.avwSetLogoutNortice = function() {
window.onbeforeunload = function(event) {
if(ClientData.isGetitsMode() || ClientData.isStreamingMode()){
if(ClientData.isGetitsMode()){
COMMON.SetEndLog(CONTENTVIEW_GENERAL.contentID);
COMMON.RegisterLog();
}
} else {
// メッセージ表示
// FFでは、https://bugzilla.mozilla.org/show_bug.cgi?id=588292 によりメッセージが出力されない
var message = I18N.i18nText('sysInfoWithoutLogout');
var e = event || window.event;
if(e) {
e.returnValue = message;
}
return message;
}
};
window.onbeforeunload = function(event) {
if(ClientData.isGetitsMode() || ClientData.isStreamingMode()){
if(ClientData.isGetitsMode()){
COMMON.SetEndLog(CONTENTVIEW_GENERAL.contentID);
COMMON.RegisterLog();
}
} else {
// メッセージ表示
// FFでは、https://bugzilla.mozilla.org/show_bug.cgi?id=588292 によりメッセージが出力されない
var message = I18N.i18nText('sysInfoWithoutLogout');
var e = event || window.event;
if(e) {
e.returnValue = message;
}
return message;
}
};
};
/* 警告メッセージを出力しないでページ遷移を行う関数 */
AVWEB.avwScreenMove = function(url) {
window.onbeforeunload = null;
window.location = url;
window.onbeforeunload = null;
window.location = url;
};
/* Debug Log */
AVWEB.avwLog = function(msg) {
if(AVWEB.avwSysSetting().debug) {
console.log(msg);
}
if(AVWEB.avwSysSetting().debug) {
console.log(msg);
}
};
/* get bytes of text */
AVWEB.getByte = function(text) {
var count = 0;
var n;
for(var i=0; i<text.length; i++) {
n = escape(text.charAt(i));
if (n.length < 4) {
count++;
}
else {
count+=2;
}
}
return count;
var count = 0;
var n;
for(var i=0; i<text.length; i++) {
n = escape(text.charAt(i));
if (n.length < 4) {
count++;
}
else {
count+=2;
}
}
return count;
};
AVWEB.getApiUrl = function(accountPath) {
// url 構築
//var sysSettings = AVWEB.avwSysSetting();
var apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath);
}
return apiUrl;
// url 構築
//var sysSettings = AVWEB.avwSysSetting();
var apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath);
}
return apiUrl;
};
......@@ -984,10 +983,10 @@ AVWEB.getURL = function(apiName) {
var url = ClientData.conf_apiResourceDlUrl(); //sysSettings.apiResourceDlUrl;
url = AVWEB.format(url, ClientData.userInfo_accountPath()) + '/' + apiName + '/?isStreaming=' + isStreaming;
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
url = url + '&pid=' + CONTENTVIEW_GENERAL.pid;
}
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
url = url + '&pid=' + CONTENTVIEW_GENERAL.pid;
}
return url;
};
......
......@@ -1200,7 +1200,6 @@ var ClientData = {
// SessionStorageUtils.get(COMMON.Keys.serviceOpt_force_login_periodically);
// }
// },
// Session :事業者オプション(serviceOpt)_GPS使用可:Char(Y:可能, N:不可)
serviceOpt_usable_readinglog_gps : function(data) {
if (arguments.length > 0) {
......
@charset "utf-8";
/*アコーディオン用*/
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(img/ui-icons_222222_256x240.png); }
.ui-state-default .ui-icon { background-image: url(img/ui-icons_888888_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon,.ui-state-active .ui-icon {background-image: url(img/ui-icons_454545_256x240.png); }
/* positioning */
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
/* jQuery UI Accordion 1.8.11*/
.ui-accordion { width: 100%; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 1.4em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }
#accordion p,#mouseover p{padding:5px; margin:0;}
.cnt_header .menu_language .button #accordion {
width: 250px;
position: absolute;
left: 24px;
top: 28px;
text-align: left;
z-index: 9999;
font-size: 12px;
border:1px solid #CCC;
background-color: #FFFFFF;
}
.cnt_header .menu_language .button #accordion h5{
padding: 5px 10px;
margin: 0;
border-bottom: 1px solid #CCC;
background: #FFFFFF;
}
.cnt_header .menu_language .button #accordion h5 a { text-decoration:underline;}
.cnt_header .menu_language .button #accordion h5 a:hover { text-decoration:none;}
.cnt_header .menu_language .button #accordion .newmsg { border-bottom:1px solid #CCC;}
.cnt_header .menu_language .button #accordion .newmsg p {
padding:5px 15px;
height:60px;
overflow-y:scroll;
}
.cnt_header .menu_language .button #accordion .pagechange a {
display: block;
padding:10px;
cursor:pointer;
}
.cnt_header .menu_language .button #accordion .date {
font-size: 10px;
text-align: right;
display: block;
padding:5px 5px 0;
}
.postItem a{white-space:nowrap; text-overflow:ellipsis; overflow:hidden; display:block;}
.postItem a.open{white-space:normal; text-overflow:none; overflow:visible;}
header .cnt_header .menu_language #searchArea {
background-color: #FFFFFF;
width: 200px;
border: 1px solid #CCCCCC;
position: absolute;
top: 40px;
z-index: 9999;
text-align: left;
right: 0px;
padding-top:5px;
}
header .cnt_header .menu_language #searchArea a#searchbtn {
display: block;
height: 20px;
width: 25px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
color: #ffffff;
padding: 1px 20px;
text-decoration: none;
margin: 0 0 10px 125px;
}
header .cnt_header .menu_language #searchArea a#searchbtn:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
a#searchbtn:active{
position:relative;
top:1px;
}
#numbermessage
{
padding-left:5px;
}
\ No newline at end of file
@charset "utf-8";
/* Latest Update
2012.11.5 write */
/* author
koyuki watanabe */
/* ---------- MENU ---------- */
/*
5. .sectionbackup setting
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. .sectionbackup setting */
/*----------------------------*/
.sectionbackup{
width:420px;
height:269px;
border:1px solid #cccccc;
padding:0;
margin:0;
overflow:hidden;
-webkit-border-radius:10px 10px 10px 10px;
-moz-border-radius:10px 10px 10px 10px;
border-radius:10px 10px 10px 10px;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
display:none;
z-index:1000;
background-color:#fff;
}
.sectionbackup h1{
margin:0 0 38px 0;
padding:0;
height:64px;
line-height:62px;
text-align:center;
font-weight:bold;
letter-spacing: 2px;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
}
.sectionbackup p{
width:320px;
margin:0 50px;
}
.sectionbackup p.message{
font-size:15px;
font-weight:bold;
color:#333;
}
.sectionbackup .backupbtn {
width:325px;
height:25px;
margin:49px auto 0;
}
.sectionbackup .backupbtn a.ok {
position:relative;
margin:0 98px 0 0;
}
.sectionbackup .backupbtn a.cancel {
position:relative;
margin:-27px 0 0 135px;
}
.sectionbackup .backupbtn a {
width:85px;
height:21px;
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #0C274D;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:14px;
font-weight:bold;
padding:2px 0;
line-height:21px;
text-decoration:none;
text-align:center;
float:right;
}
.sectionbackup .backupbtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionbackup .backupbtn a:active {
position:relative;
top:1px;
}
.sectionbackup .backupbtn a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.sectionbackup .backupbtn a:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.sectionbackup_logout{
width:500px;
height:310px;
border:1px solid #cccccc;
padding:0;
margin:0;
overflow:hidden;
-webkit-border-radius:10px 10px 10px 10px;
-moz-border-radius:10px 10px 10px 10px;
border-radius:10px 10px 10px 10px;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
display:none;
z-index:1000;
background-color:#fff;
}
.sectionbackup_logout h1{
margin:0 0 38px 0;
padding:0;
height:64px;
line-height:62px;
text-align:center;
font-weight:bold;
letter-spacing: 2px;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
}
.sectionbackup_logout .message-options .option_backup
{
font-size:13px;
margin:0 0 0 24px;
}
.sectionbackup_logout .message-options .option_backup input
{
margin:0 5px 0 15px;
}
.sectionbackup_logout p{
width:500px;
margin:0 50px;
}
.sectionbackup_logout p.notice
{
/*text-align:center;*/
margin-top:20px;
font-size:13px;
}
.sectionbackup_logout p.message{
font-size:15px;
font-weight:bold;
color:#333;
}
.sectionbackup_logout .backupbtn {
width:500px;
height:25px;
margin:20px auto 0;
}
.sectionbackup_logout .backupbtn a.ok {
position:relative;
/*margin:0 98px 0 0;*/
}
.sectionbackup_logout .backupbtn a.cancel {
position:relative;
/*margin:-27px 0 0 135px;*/
}
.sectionbackup_logout .backupbtn a
{
margin:0 15px;
width: 200px;
height:21px;
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #0C274D;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:14px;
font-weight:bold;
padding:2px 0;
line-height:21px;
text-decoration:none;
text-align:center;
float:right;
}
.sectionbackup_logout .backupbtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionbackup_logout .backupbtn a:active {
position:relative;
top:1px;
}
.sectionbackup_logout .backupbtn a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.sectionbackup_logout .backupbtn a:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.articlecontentsearch{
width:858px;
border:1px solid #ccc;
padding:10px 20px 0 22px;
display:block;
margin:10px 0 20px 10px;
overflow:hidden;
}
.tops{
height:45px;
position:relative;
margin-bottom:16px;
font-size:12px;
}
.tops a.btn_gray img, .tops a.btn_blue img{
display:inline;
line-height:19px;
vertical-align:middle;
}
.tops a.btn_blue,.tops a.btn_gray
{
float:left;
text-align:center;
display:table-cell;
vertical-align:middle;
/*width:80px;*/
layout-grid-line:80px;
height:19px;
text-decoration:none;
margin-right:10px;
color:#fff;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 15px;
text-decoration: none;
/* [disabled]text-shadow:1px 1px 0px #a2d613; */
margin-left: 5px;
}
.tops a:hover.btn_blue,.tops a:hover.btn_gray {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.tops a.btn_blue:active,.tops a.btn_gray:active {
/*position:relative;
top:1px;*/
}
.tops a.btn_blue:not(:target),.tops a.btn_gray:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.tops a:hover.btn_blue:not(:target),.tops a:hover.btn_gray:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.button{ float:right; margin-top:20px; margin-right:2px;}
.tops ul{ float:left; margin:0; padding:0;}
.tops ul li{ display:inline;}
.tops ul li a{
font-size:12px;
float:left;
color:rgb(45,131,218);
text-decoration:none;
margin-right:5px;
margin-left:5px;
}
.tops ul li span{
font-size:12px;
float:left;
color:#333333;
text-decoration:none;
margin-right:5px;
margin-left:5px;
}
.tops ul li a.nottouchdevice:hover{ text-decoration:underline;}
.tops ul li a.gray_text{ color:#999999;}
.tops ul li a.active_tops{ color:#2d83da; text-decoration:underline;}
.tops ul li b{ font-weight:normal; float:left; font-size:12px;}
.tops p{ color:#333333; font-size:12px; position:absolute; right:0; padding:0 2px 0 0; margin:0;}
/* section */
.sectionsearchlist{
height: 135px;
padding-top: 10px;
border-top: 1px dashed #cccccc;
margin-top: 10px;
display: block;
}
.cnt_section_list{
margin: 0;
height: 120px;
position: relative;
padding-top: 10px;
padding-bottom: 5px;
padding-left:10px;
}
.cnt_section_list:hover{
background-color: #FFFFFF;
}
.cnt_section_list a.img{
display: block;
position: relative;
width: 161px;
height: 120px;
float: left;
}
.cnt_section_list a.img img{
margin: 7px auto 0;
position: relative;
}
/*.cnt_section_list a.img img.book_icon{
position:absolute;
top:0px;
left:0px;
z-index:10;
}*/
.cnt_section_list .text{
float: left;
height: 120px;
margin: 0 0 0 35px;
width:400px;
}
.cnt_section_list .text a.name{
color: #37648C;
font-size: 16px;
}
.cnt_section_list .text a.name img
{
float:left;
display:inline-block;
margin-right:5px;
}
.cnt_section_list .text a.name:hover{ text-decoration:none; }
.cnt_section_list .text ul.date{ margin-top: 0px; }
.cnt_section_list .text ul.date li{
color:#333333;
font-size:13px;
}
/*---*/
.cnt_section_list .text .info{
overflow: hidden;
margin-top: 10px;
}
.cnt_section_list .text ul.pic{
float: left;
margin-top: 20px;
}
.cnt_section_list .text ul.pic li{
float: left;
margin-left: 17px;
display: inline-block;
}
.cnt_section_list .text ul.pic li img {
position: relative;
left: -18px;
}
.cnt_section_list .text ul.pic li a.read {
margin-top: 42px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 26px;
text-decoration: none;
margin-left: 5px;
}
.cnt_section_list .text ul.pic li a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read:active {
/*position:relative;
top:1px;*/
}
.cnt_section_list .text ul.pic li a.read:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.cnt_section_list .text ul.pic li a.read:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.cnt_section_list .text ul.pic li a.read_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 26px;
text-decoration: none;
margin-left: 5px;
line-height: 20px;
margin-left: 5px;
}.cnt_section_list .text ul.pic li a.read_hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read_hover:active {
/*position:relative;
top:1px;*/
}
.btn_bott
{
display: block;
width: 210px;
height: 33px;
line-height: 33px;
margin: 37px auto 0 auto;
font-size: 14px;
color: #fff;
text-align: center;
text-decoration: none;
border: 1px solid #0C284E;
border-radius: 4px;
/*outline:1px solid #0C284E;*/
background: #37648C; /* Old browsers */
background: -moz-linear-gradient(top, #37648C 0%, #22466D 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#37648C), color-stop(100%,#22466D)); /* Chrome,Safari4+ */
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-linear-gradient(top, #37648C 0%,#22466D 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #37648C 0%,#22466D 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #37648C 0%,#22466D 100%); /* IE10+ */
background: linear-gradient(to bottom, #37648C 0%,#22466D 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37648C', endColorstr='#22466D',GradientType=0 ); /* IE6-9 */
}
a:hover.btn_bott{
background: #22466D; /* Old browsers */
background: -moz-linear-gradient(top, #22466D 0%, rgb(16,89,163) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#22466D), color-stop(100%,#37648C)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #22466D 0%,#37648C 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #22466D 0%,#37648C 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #22466D 0%,#37648C 100%); /* IE10+ */
background: linear-gradient(to bottom, #22466D 0%,#37648C) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22466D', endColorstr='#37648C',GradientType=0 ); /* IE6-9 */
}
.sectionsearchlist #bottom {
height:53px;
padding:5px;
position:relative;
}
.cnt_section_list .img .band_horizontal {
position: absolute;
top: -4px;
left: 1px;
}
.cnt_section_list .img .band_vertical {
position: absolute;
left: 40px;
top: -4px;
}
.cnt_section_list .text .info .pic li .read {
position: absolute;
right: 20px;
top: 50px;
}
#main-searchresult
{
border:1px solid #ccc;
padding:10px 20px 10px 22px;
display:block;
margin:10px 10 20px 10px;
height: 25px;
}
#main-searchresult span
{
float: left;
margin-right: 15px;
}
#main-searchresult input
{
float: left;
margin-right: 10px;
}
#main-searchresult input[type="radio"]
{
margin-right: 5px;
}
.tops a.btn_gray, .tops a.btn_blue{
float:left;
text-align:center;
display:table-cell;
vertical-align:middle;
width:80px;
layout-grid-line:80px;
height:19px;
text-decoration:none;
margin-right:10px;
color:#fff;
margin-right: 15px;
}
a:hover
{
cursor:pointer;
}
#main-searchresult span:hover
{
cursor: pointer;
}
#msgSearchNotExist
{
display: none;
}
\ No newline at end of file
header .cnt_header .menu_language #header-searchbox {
background-color: #FFFFFF;
width: 200px;
border: 1px solid #CCCCCC;
position: absolute;
top: 24px;
z-index: 9999;
text-align: left;
right: 0px;
padding-top:5px;
}
header .cnt_header .menu_language #header-searchbox span
{
cursor:pointer;
}
header .cnt_header .menu_language #header-searchbox a#searchbox-search {
display: block;
height: 20px;
line-height:20px;
/*width: 25px;*/
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
color: #ffffff;
padding: 1px 20px;
text-decoration: none;
margin: 0 10px 10px 125px;
}
header .cnt_header .menu_language #header-searchbox a#searchbox-search:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
a#searchbox-search:active{
position:relative;
top:1px;
}
.articlehistory{
width:858px;
border:1px solid #ccc;
padding:10px 20px 0 22px;
display:block;
margin:10px 0 20px 10px;
overflow:hidden;
}
.tops{
height:45px;
position:relative;
margin-bottom:16px;
font-size:12px;
}
.tops a.btn_gray img, .tops a.btn_blue img{
display:inline;
line-height:19px;
vertical-align:middle;
}
.tops a.btn_blue,.tops a.btn_gray
{
float:left;
text-align:center;
display:table-cell;
vertical-align:middle;
/*width:80px;*/
layout-grid-line:80px;
height:19px;
text-decoration:none;
margin-right:10px;
color:#fff;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 15px;
text-decoration: none;
/* [disabled]text-shadow:1px 1px 0px #a2d613; */
margin-left: 5px;
}
.tops a:hover.btn_blue,.tops a:hover.btn_gray {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.tops a.btn_blue:active,.tops a.btn_gray:active {
/*position:relative;
top:1px;*/
}
.tops a.btn_blue:not(:target),.tops a.btn_gray:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.tops a:hover.btn_blue:not(:target),.tops a:hover.btn_gray:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.button{ float:right; margin-top:20px; margin-right:2px;}
.tops ul{ float:left; margin:0; padding:0;}
.tops ul li{ display:inline;}
.tops ul li a{
font-size:12px;
float:left;
color:rgb(45,131,218);
text-decoration:none;
margin-right:5px;
margin-left:5px;
}
.tops ul li span{
font-size:12px;
float:left;
color:#333333;
text-decoration:none;
margin-right:5px;
margin-left:5px;
}
.tops ul li a.nottouchdevice:hover{ text-decoration:underline;}
.tops ul li a.gray_text{ color:#999999;}
.tops ul li a.active_tops{ color:#2d83da; text-decoration:underline;}
.tops ul li b{ font-weight:normal; float:left; font-size:12px;}
.tops p{ color:#333333; font-size:12px; position:absolute; right:0; padding:0 2px 0 0; margin:0;}
/* section */
.sectionhistory{
height: 135px;
padding-top: 10px;
border-top: 1px dashed #cccccc;
margin-top: 10px;
display: block;
}
.cnt_section_list{
margin: 0;
height: 120px;
position: relative;
padding-top: 10px;
padding-bottom: 5px;
padding-left:10px;
}
.cnt_section_list:hover{
background-color: #FFFFFF;
}
.cnt_section_list a.img{
display: block;
position: relative;
width: 161px;
height: 120px;
float: left;
}
.cnt_section_list a.img img{
margin: 7px auto 0;
position: relative;
}
/*.cnt_section_list a.img img.book_icon{
position:absolute;
top:0px;
left:0px;
z-index:10;
}*/
.cnt_section_list .text{
float: left;
height: 120px;
margin: 0 0 0 35px;
width:400px;
}
/*.cnt_section_list .text a.name{
color: #37648C;
font-size: 16px;
}*/
.cnt_section_list .text a.name img
{
float:left;
display:inline-block;
margin-right:5px;
}
.cnt_section_list .text a.name:hover{ text-decoration:none; }
.cnt_section_list .text ul.date{ margin-top: 0px; }
.cnt_section_list .text ul.date li{
color:#333333;
font-size:13px;
}
/*---*/
.cnt_section_list .text .info{
overflow: hidden;
margin-top: 10px;
}
.cnt_section_list .text ul.pic{
float: left;
margin-top: 20px;
}
.cnt_section_list .text ul.pic li{
float: left;
margin-left: 17px;
display: inline-block;
}
.cnt_section_list .text ul.pic li img {
position: relative;
left: -18px;
}
.cnt_section_list .text ul.pic li a.read {
margin-top: 42px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 26px;
text-decoration: none;
margin-left: 5px;
}
.cnt_section_list .text ul.pic li a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read:active {
/*position:relative;
top:1px;*/
}
.cnt_section_list .text ul.pic li a.read:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.cnt_section_list .text ul.pic li a.read:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.cnt_section_list .text ul.pic li a.read_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 26px;
text-decoration: none;
margin-left: 5px;
line-height: 20px;
margin-left: 5px;
}.cnt_section_list .text ul.pic li a.read_hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read_hover:active {
/*position:relative;
top:1px;*/
}
.cnt_section_list .img .band_horizontal {
position: absolute;
top: -4px;
left: 1px;
}
.cnt_section_list .img .band_vertical {
position: absolute;
left: 40px;
top: -4px;
}
.cnt_section_list .text .info .pic li .read {
position: absolute;
right: 20px;
top: 50px;
}
#main-searchresult
{
border:1px solid #ccc;
padding:10px 20px 10px 22px;
display:block;
margin:10px 10 20px 10px;
height: 25px;
}
#main-searchresult span
{
float: left;
margin-right: 15px;
}
#main-searchresult input
{
float: left;
margin-right: 10px;
}
#main-searchresult input[type="radio"]
{
margin-right: 5px;
}
.tops a.btn_gray, .tops a.btn_blue{
float:left;
text-align:center;
display:table-cell;
vertical-align:middle;
width:80px;
layout-grid-line:80px;
height:19px;
text-decoration:none;
margin-right:10px;
color:#fff;
margin-right: 15px;
}
a:hover
{
cursor:pointer;
}
#main-searchresult span:hover
{
cursor: pointer;
}
#msgSearchNotExist
{
display: none;
}
\ No newline at end of file
......@@ -995,7 +995,7 @@ aside.MemoIndexBox .indexBoxBody_off{
.slider .sld01 span input{
border: none;
width: 20px;
width: 30px;
line-height: 1;
padding: 0;
margin: 0;
......

.sectionLimitAccess {
width:420px;
/*height:249px;*/
border:1px solid #cccccc;
display: none;
padding:0;
margin:0;
overflow:hidden;
-webkit-border-radius:10px 10px 10px 10px;
-moz-border-radius:10px 10px 10px 10px;
border-radius:10px 10px 10px 10px;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color: #ffffff;
z-index: 101;
}
.sectionLimitAccess h1{
margin:0 0 38px 0;
padding:0;
height:64px;
line-height:62px;
text-align:center;
font-weight:bold;
letter-spacing: 2px;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
border-radius: 10px 10px 0px 0px;
}
.sectionLimitAccess p{
text-align:center;
}
.sectionLimitAccess p.message{
font-size:13px;
font-weight:bold;
color:#333;
}
.sectionLimitAccess p.message .error
{
display:block;
color:#f00;
padding:15px 0 0 0;
font-weight:normal;
}
.sectionLimitAccess p.message .text
{
padding:0 10px 0 0;
display:block;
font-size:15px;
margin-bottom:15px;
}
.sectionLimitAccess p.message input
{
width:200px;
height:20px;
padding:2px;
background-color:#fff;
}
.sectionLimitAccess .deletebtn {
width:325px;
height:25px;
line-height:25px;
margin:30px auto;
text-align:center;
}
.sectionLimitAccess .deletebtn a
{
cursor:pointer;
margin-left:10px;
width:85px;
height:21px;
line-height:21px;
text-align:center;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 0;
text-decoration: none;
}
.sectionLimitAccess .deletebtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionLimitAccess .deletebtn a:active {
position:relative;
top:1px;
}
.sectionLimitAccess .deletebtn a:not(:target) {
filter: none;
-ms-filter: none;
}
\ No newline at end of file
/* Latest Update
2012.11.5 write */
/* author
koyuki watanabe */
/* article */
a
{
cursor:pointer;
}
.articleMain{
width: 858px;
border: 1px solid #ccc;
padding: 10px 20px 0 22px;
display: block;
margin: 10px 0 20px 10px;
overflow: hidden;
}
.tops{
height:40px;
position:relative;
/*
margin-bottom:16px;
*/
font-size:12px;
}
.button{ float:right; margin-top:20px; margin-right:2px; }
.delete {
position: absolute;
top: 17px;
left: 764px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 26px;
text-decoration: none;
/* [disabled]text-shadow:1px 1px 0px #a2d613; */
margin-left: 5px;
}.delete:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.delete:active {
/*position:relative;
top:1px;*/
}
a.delete:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
a.delete:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
/*
.delete_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background: -moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color: #36638B;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 26px;
text-decoration: none;
margin-left: 5px;
line-height: 20px;
}.delete:hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.delete:hover:active {
position:relative;
top:1px;
}*/
.tops ul{ float:left; margin:0; padding:0; }
.tops ul li{ display:inline; }
.tops ul li a{
font-size:12px;
float:left;
color:#333333;
text-decoration:none;
margin-right:5px;
margin-left:5px;
}
.tops ul span{
font-size: 12px;
float: left;
color: #333333;
text-decoration: none;
margin-left: 5px;
}
.tops ul li a:hover{ text-decoration:underline; }
.tops ul li b{ font-weight:normal; float:left; font-size:12px; }
.tops p{ color:#333333; font-size:12px; position:absolute; right:0; top:25px; padding:0 2px 0 0; margin:0; }
/* section */
.sectionBookmark{
height: 135px;
padding-top: 10px;
border-top: 1px dashed #cccccc;
margin-top: 10px;
display: block;
}
.cnt_section{
margin: 0;
height: 120px;
position: relative;
padding-top: 10px;
padding-bottom: 5px;
}
.cnt_section:hover{
background-color: #FFFFFF;
}
.cnt_section a.img{
display: block;
position: relative;
width: 161px;
height: 120px;
float: left;
}
.cnt_section .check{
width: 100px;
height: 70px;
padding-top: 50px;
text-align: center;
vertical-align: middle;
float: left;
display: block;
}
.cnt_section a.img img{
margin: 7px auto 0;
position: relative;
}
/*.cnt_section a.img img.book_icon{
position:absolute;
top:0px;
left:0px;
z-index:10;
}*/
.cnt_section .text{
float: left;
height: 120px;
margin: 0 0 0 35px;
width:450px;
}
.cnt_section .text a.name{
color: #37648C;
font-size: 16px;
}
.cnt_section .text a.name img
{
display:inline;
margin-right:5px;
}
.cnt_section .text a.name:hover{ text-decoration:none; }
.cnt_section .text ul.date{ margin-top: 0px; }
.cnt_section .text ul.date li{
color:#333333;
font-size:13px;
}
/*---*/
.cnt_section .text .info{
overflow: hidden;
margin-top: 10px;
}
.cnt_section .text ul.pic{
float: left;
margin-top: 20px;
}
.cnt_section .text ul.pic li{
float: left;
margin-left: 17px;
display: inline-block;
}
.cnt_section .text ul.pic li img {
position: relative;
left: -18px;
}
.cnt_section .text ul.pic li a.read {
margin-top: 42px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 26px;
text-decoration: none;
margin-left: 5px;
}.cnt_section .text ul.pic li a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section .text ul.pic li a.read:active {
position:relative;
top:1px;
}
.cnt_section .text ul.pic li a.read:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.cnt_section .text ul.pic li a.read:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.cnt_section .text ul.pic li a.read_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 26px;
text-decoration: none;
margin-left: 5px;
line-height: 20px;
margin-left: 5px;
}.cnt_section .text ul.pic li a.read_hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section .text ul.pic li a.read_hover:active {
position:relative;
top:1px;
}
.btn_bott{
display:block;
width:280px;
height:35px;
background:url(../img/list/button_bottom.png) no-repeat;
margin:37px auto 0 auto;
}
section#bottom {
height:53px;
padding:5px;
position:relative;
border-top: 1px dashed #cccccc;
margin-top: 10px;
display: block;
}
#list .wrapper #main article section .cnt_section .img .band_horizontal {
position: absolute;
top: -4px;
left: 1px;
}
#list .wrapper #main article section .cnt_section .img .band_vertical {
position: absolute;
left: 40px;
top: -4px;
}
#list .wrapper #main article section .cnt_section .text .info .pic li .read {
position: absolute;
right: 20px;
top: 50px;
}
/* CSS Document */
@charset "utf-8";
/* Latest Update
2012.11.5 write */
/* author
koyuki watanabe */
/* ---------- MENU ---------- */
/*
5. section setting
*/
/* ---------- MENU ---------- */
html,body {
margin:0;
padding:0;
}
/*----------------------------*/
/* 1. section setting */
/*----------------------------*/
/*----------------------------*/
/* 1. section content pdf */
/*----------------------------*/
#contentDetail{
margin: 0;
padding: 0;
}
.sectiondetail {
width: 690px;
border: 1px solid #CCC;
display: block;
padding: 0;
margin: 0;
overflow: hidden;
-webkit-border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
border-radius: 10px 10px 10px 10px;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
min-height: 505px;
background-color:#fff;
}
.closebtn {
background: url(../img/login/close.png) 0 0 no-repeat;
width: 30px;
height: 30px;
display: block;
margin-left: 660px;
}
.sectiondetail #book_data {
width: 245px;
border-right: 2px solid #CCC;
background-color: #f7f7f7;
float: left;
min-height: 545px;
}
.sectiondetail #book_data .book_img {
height: 145px;
margin: 124px 0 0 47px;
position: relative;
}
.sectiondetail #book_data .book_img img{
position: absolute;
top: 0px;
left: -1px;
}
.sectiondetail #book_data .book_img img.book_icon {
position: absolute;
top: -3px;
left: -3px;
z-index: 10;
}
.sectiondetail #book_data ul {
list-style:none;
line-height:1em;
font-size:13px;
margin:0 0 0 42px;
padding:0;
}
.sectiondetail #book_data ul li {
display:block;
}
.sectiondetail #book_data ul .title {
margin-bottom:19px;
font-size:18px;
}
.sectiondetail #book_data ul .date {
margin-bottom:20px;
font-size:12px;
}
.sectiondetail #book_data ul .explain {
margin-bottom:32px;
line-height:1.3em;
font-size:13px;
}
.sectiondetail #book_data .read_btn a.read {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 27px;
margin-left: 80px;
text-decoration: none;
}
.sectiondetail #book_data .read_btn a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectiondetail #book_data .read_btn a.read:active {
position:relative;
top:1px;
}
.sectiondetail #book_data .read_btn a.read:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.sectiondetail #book_data .read_btn a.read:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.sectiondetail #book_list {
width: 395px;
margin-right: 25px;
margin-top: 5px;
float: right;
}
.sectiondetail #book_list ul {
list-style: none;
width: 395px;
margin: 0;
padding: 10px 0px;
font-size: 13px;
min-height: 64px;
}
.sectiondetail #book_list ul li {
margin:0;
padding:0;
line-height:1em;
}
.sectiondetail #book_list ul .list_img {
width:96px;
height:64px;
float:left;
}
.sectiondetail #book_list ul .list_img img {
height: 64px;
box-shadow: 0px 1px 3px 0px #666;
}
.sectiondetail #book_list ul .list_title{
font-size: 16px;
margin-bottom: 10px;
}
.sectiondetail #book_list ul .list_title a {
color: #37648C;
}
.sectiondetail #book_list ul .page,.sectiondetail #book_list ul .text{ margin-bottom:5px;}
.sectiondetail #book_list ul+ul { border-top:1px dotted #CCC;}
.sectiondetail #book_data .read_btn {
height:25px;
/*margin:30px 0 0 80px;*/
}
/* section for detail no pdf */
.sectiondetailnopdf{
width: 690px;
border: 1px solid #CCC;
display: block;
padding: 0;
margin: 0;
overflow: hidden;
-webkit-border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
border-radius: 10px 10px 10px 10px;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
min-height: 505px;
background-color: #f7f7f7;
}
.sectiondetailnopdf #book_data {
background-color: #f7f7f7;
margin-right: auto;
margin-left: auto;
padding-top: 124px;
width: 180px;
}
.sectiondetailnopdf #book_data .book_img {
height: 145px;
margin: 0 15px;
position: relative;
}
.sectiondetailnopdf #book_data .book_img img{
position: absolute;
top: 0px;
left: 0px;
}
.sectiondetailnopdf #book_data .book_img img.book_icon {
position: absolute;
top: -3px;
left: -3px;
z-index: 10;
}
.sectiondetailnopdf #book_data ul {
list-style: none;
line-height: 1.2em;
font-size: 13px;
margin: 0;
padding: 0;
}
.sectiondetailnopdf #book_data ul li {
display:block;
}
.sectiondetailnopdf #book_data ul .title {
margin-bottom: 15px;
font-size: 18px;
text-align: center;
}
.sectiondetailnopdf #book_data ul .date {
margin-bottom: 20px;
font-size: 12px;
margin-left: 10px;
}
.sectiondetailnopdf #book_data ul .explain {
margin-bottom: 32px;
line-height: 1.3em;
font-size: 13px;
margin-left: 10px;
}
.sectiondetailnopdf #book_data .read_btn a.read {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
padding: 2px 27px;
margin-left: 45px;
text-decoration: none;
}
.sectiondetailnopdf #book_data .read_btn a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectiondetailnopdf #book_data .read_btn a.read:active {
position:relative;
top:1px;
}
.sectiondetailnopdf #book_data .read_btn a.read:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.sectiondetailnopdf #book_data .read_btn a.read:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
.sectiondetailnopdf #book_list {
width: 395px;
margin-right: 25px;
margin-top: 5px;
float: right;
}
.sectiondetailnopdf #book_list ul {
list-style: none;
width: 395px;
margin: 0;
padding: 10px 0px;
font-size: 13px;
min-height: 64px;
}
.sectiondetailnopdf #book_list ul li {
margin-top:0;
padding:0;
line-height:1em;
}
.sectiondetailnopdf #book_list ul .list_img {
width:96px;
height:64px;
float:left;
}
.sectiondetailnopdf #book_list ul .list_img img {
height: 64px;
box-shadow: 0px 1px 3px 0px #666;
}
.sectiondetailnopdf #book_list ul .list_title{
font-size: 16px;
margin-bottom: 10px;
}
.sectiondetailnopdf #book_list ul .list_title a {
color: #37648C;
}
.sectiondetailnopdf #book_list ul .page,.sectiondetailnopdf #book_list ul .text{ margin-bottom:5px;}
.sectiondetailnopdf #book_list ul+ul { border-top:1px dotted #CCC; }
.sectiondetailnopdf #book_data .read_btn {
height:25px;
/*margin:30px 0 0 80px;*/
}
/* CSS Document */
@charset "utf-8";
/* Latest Update
2012.10.31 write */
/* author
keiki ettyuu */
/* ---------- MENU ---------- */
/*
1. gloval setting
2. wrapper setting
3. header setting
4. footer setting
5. section setting
999. clearfix
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. gloval setting */
/*----------------------------*/
html,body{
width:100%;
}
body{
background:#37648C;
}
/*----------------------------*/
/* 2. wrapper setting */
/*----------------------------*/
#wrapper {
height:100%;
}
/*----------------------------*/
/* 3. header setting */
/*----------------------------*/
/*----------------------------*/
/* 4. footer setting */
/*----------------------------*/
/*----------------------------*/
/* 5. section setting */
/*----------------------------*/
.wrapper {
width: 100%;
}
#main{
width:960px;
padding:0;
}
a
{
cursor:pointer;
}
article{
width: 900px;
height: 543px;
padding: 0;
display: block;
/*margin: 50px 30px 30px;*/
margin:40px 30px 20px 30px;
overflow: hidden;
}
section{
width: 500px;
height: 325px;
border: 1px solid #cccccc;
display: block;
padding: 25px 0 0;
margin: 25px auto 0;
overflow: hidden;
-webkit-border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
border-radius: 4px 4px 4px 4px;
-webkit-box-shadow: 0px 1px 2px 0px #666;
-moz-box-shadow: 0px 1px 2px 0px #666;
box-shadow: 0px 1px 2px 0px #666;
background-color: #FFF;
}
section dl,section dl dt,section dl dd{
margin:0;
padding:0;
}
section dl{
width: 450px;
margin: 0 auto 5px;
}
section dl dt{
padding: 5px;
font-size: 13px;
color: #37648C;
font-weight: bolder;
}
section dl dd{
background: url(../img/login/loginbg.png) 0 0 no-repeat;
/* [disabled]padding:6px; */
width: 240px;
height: 30px;
}
section dl dd input{
/*background:#00CC66;*/
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
width: 240px;
height: 30px;
border: none;
margin: 3px 4px;
padding: 0;
}
section .p{
width:300px;
}
section .memory{
width: 250px;
font-size: 12px;
vertical-align: middle;
color: #37648C;
margin-right: auto;
margin-left: auto;
margin-top: 30px;
}
section .memory input{
vertical-align:middle;
margin:0 5px 0;
padding:0;
}
section .loginbtn {
width: 200px;
margin: 14px auto 0;
}
section a.loginbtn {
width: 160px;
height: 20px;
display: block;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: #23486F; /* Old browsers */
background: -moz-linear-gradient(top, #36638B 0%, #23486F 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#36638B), color-stop(100%,#23486F)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #36638B 0%,#23486F 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #36638B 0%,#23486F 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #36638B 0%,#23486F 100%); /* IE10+ */
background: linear-gradient(to bottom, #36638B 0%,#23486F 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#23486F',GradientType=0 ); /* IE6-9 */
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
color: #ffffff;
font-size: 14px;
font-weight: bold;
padding: 10px 0;
line-height: 20px;
text-decoration: none;
margin: 20px auto 0;
text-align: center;
}
section a.loginbtn:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
#login .wrapper #main article section a.loginbtn:active {
position:relative;
top:1px;
}
section .loginbtn a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
section .loginbtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.alertTxt,.alertTxtDialog {
position: absolute;
margin: -20px 0 0 90px;
font-size: 13px;
color: #e60012;
display: block;
text-align: center;
width: 300px;
}
/*----------------------------*/
/* 999. clearfix */
/*----------------------------*/
/*clearfix*/
.fix {
}
.fix:after {
font-size:1px;
content:".";
display:block;
height:0px;
clear:both;
visibility:hidden;
}
.fix {
zoom:1;
}
/*------------*/
#login .wrapper {
background-color: #37648C;
}
#login footer {
background-color: #37648C;
}
#login footer .cnt_footer {
color: #FFF;
}
#login article section table tr th {
font-size: 14px;
color: #37648C;
font-weight: bolder;
text-align: left;
padding-left:30px;
}
#login .wrapper #main article section table tr td input {
width: 240px;
height: 28px;
}
#login article section table tr th,#login article section table tr td {
padding-bottom: 30px;
}
#login .wrapper #main article section table {
margin:0 30px ;
border-bottom:dotted 1px #BBBBBB;
}
#login footer .border .cnt_footer {
background: url(../img/login/login_border.jpg) top repeat-x;
border: none;
opacity:0;
}
#login .wrapper #main article img {
margin-right: auto;
margin-left: auto;
}
#loader {
width: 126px;
height: 126px;
display: none;
position: fixed;
_position: absolute; /* IE6対策 */
top: 50%;
left: 50%;
margin-top: -63px; /* heightの半分のマイナス値 */
margin-left: -63px; /* widthの半分のマイナス値 */
z-index: 100;
}
#fade {
width: 100%;
height: 100%;
display: none;
background-color: #000;
position: absolute;
top: 0px;
left: 0px;
z-index: 50;
opacity: 0.3;
}
#login .wrapper #main article ul {
margin-right:90px;
}
#login .wrapper #main article li {
display: inline-block;
margin-right:5px;
}
/* footer */
footer{
display: block;
height: 58px;
line-height: 60px;
padding-top: 1px;
margin: 0 auto;
width: 100%;
background-color: #EDF2F2;
}
.cnt_footer{
text-align: center;
color: #000;
font-size: 10px;
margin: 0 auto;
width: 960px;
border-top: solid 1px #CCC;
}
.focus{ color: #969696;}
#user_change footer .border .cnt_footer img { display: inline;}
/* anonymous */
#anonymous
{
position:absolute;
top:50%;
left:50%;
margin:-75px -83px 0 0;
display:none;
}
#normalUser
{
display:none;
}
#formlogin
{
opacity: 0;
}
#logologin
{
margin-top:300px;
}
/* CSS Document */
@charset "utf-8";
/* Latest Update
2012.10.31 write */
/* author
keiki ettyuu */
/* ---------- MENU ---------- */
/*
5. .sectionchangepassword setting
*/
/* ---------- MENU ---------- */
/*
html,body {
margin:0;
padding:0;
}*/
/*----------------------------*/
/* 1. .sectionchangepassword setting */
/*----------------------------*/
.sectionchangepassword{
width:498px;
height:383px;
border:1px solid #86ACC7;
padding:35px 0 0;
margin:0;
overflow:hidden;
-webkit-border-radius:10px 10px 10px 10px;
-moz-border-radius:10px 10px 10px 10px;
border-radius:10px 10px 10px 10px;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
display:none;
z-index:1000;
background-color:#fff;
}
.sectionchangepassword dl,.sectionchangepassword dl dt,.sectionchangepassword dl dd{
margin:0;
padding:0;
}
.sectionchangepassword dl{
width:300px;
margin:0 auto 5px;
}
.sectionchangepassword dl dt{
width:290px;
padding:5px;
font-size:13px;
}
.sectionchangepassword dl dd{
background:url(../img/login/loginbg.png) 0 0 no-repeat;
padding:6px;
width:288px;
height:33px;
}
.sectionchangepassword dl dd input{
/*background:#00CC66;*/
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
width:280px;
height:27px;
border:none;
margin:3px 4px;
padding:0;
}
.sectionchangepassword p{
text-align:center;
margin:25px auto 0;
font-size:13px;
}
.sectionchangepassword .loginbtn {
width:304px;
height:25px;
margin:30px auto 0;
display:block;
}
.sectionchangepassword .loginbtn a.change {
position:relative;
/*margin:0 194px 0 0;*/
}
.sectionchangepassword .loginbtn a.skip {
position:relative;
/*margin:-27px 97px 0 0;*/
}
.sectionchangepassword .loginbtn a.cancel {
position:relative;
/*margin:-27px 0 0 87px;*/
}
.sectionchangepassword .loginbtn a {
width:85px;
height:21px;
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #0C274D;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:14px;
font-weight:bold;
padding:2px 0;
line-height:21px;
text-decoration:none;
text-align:center;
float:right;
margin-left:10px;
}
.sectionchangepassword .loginbtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionchangepassword .loginbtn a:active {
position:relative;
top:1px;
}
.sectionchangepassword .loginbtn a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.sectionchangepassword .loginbtn a:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
\ No newline at end of file
/* CSS Document */
@charset "utf-8";
/* Latest Update
2012.11.5 write */
/* author
koyuki watanabe */
/* ---------- MENU ---------- */
/*
5. section setting
*/
/* ---------- MENU ---------- */
html,body {
margin:0;
padding:0;
}
/*----------------------------*/
/* 1. section setting */
/*----------------------------*/
article{
margin:0;
padding:0;
}
section{
width:520px;
height:308px;
border:1px solid #cccccc;
display:block;
padding:0;
margin:0;
overflow:hidden;
-webkit-border-radius:10px 10px 10px 10px;
-moz-border-radius:10px 10px 10px 10px;
border-radius:10px 10px 10px 10px;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
section h1{
margin:0 0 38px 0;
padding:0;
height:64px;
line-height:62px;
text-align:center;
font-weight:bold;
letter-spacing: 2px;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
}
section p{
width:320px;
margin:0 50px;
}
section p.message{
margin-bottom:20px;
font-size:15px;
font-weight:bold;
color:#333;
}
section p.notice{
line-height:20px;
font-size:12px;
color:#333;
}
section .restorebtn {
width:325px;
height:25px;
margin:29px auto 0;
}
section .restorebtn a.ok {
position:relative;
margin:0 98px 0 0;
}
section .restorebtn a.cancel {
position:relative;
margin:27px 0 0 135px;
}
section .restorebtn a {
width:170px;
height:21px;
-moz-box-shadow:inset 0px 1px 0px 0px #d6ee23;
-webkit-box-shadow:inset 0px 1px 0px 0px #d6ee23;
box-shadow:inset 0px 1px 0px 0px #d6ee23;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background:-moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color:#a4d815;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #83bd07;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:14px;
font-weight:bold;
padding:2px 0;
line-height:21px;
text-decoration:none;
text-shadow:1px 1px 0px #a2d613;
text-align:center;
float:right;
}
section .restorebtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background:-moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color:#83c008;
}
section .restorebtn a:active {
position:relative;
top:1px;
}
section .restorebtn a:not(:target) {
filter: none;
-ms-filter: none;
}
\ No newline at end of file
/* CSS Document */
@charset "utf-8";
/* Latest Update
2012.11.5 write */
/* author
koyuki watanabe */
/* ---------- MENU ---------- */
/*
5. .sectionrestore setting
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. .sectionrestore setting */
/*----------------------------*/
.sectionrestore{
width:420px;
height:328px;
border:1px solid #cccccc;
padding:0;
margin:0;
overflow:hidden;
-webkit-border-radius:10px 10px 10px 10px;
-moz-border-radius:10px 10px 10px 10px;
border-radius:10px 10px 10px 10px;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
display:none;
z-index:1000;
background-color:#fff;
}
.sectionrestore h1{
margin:0 0 38px 0;
padding:0;
height:64px;
line-height:62px;
text-align:center;
font-weight:bold;
letter-spacing: 2px;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
}
.sectionrestore p{
width:320px;
margin:0 50px;
}
.sectionrestore p.message{
margin-bottom:20px;
font-size:15px;
font-weight:bold;
color:#333;
}
.sectionrestore p.notice{
line-height:20px;
font-size:12px;
color:#333;
}
.sectionrestore .restorebtn {
width:325px;
height:25px;
margin:29px auto 0;
}
.sectionrestore .restorebtn a.ok {
position:relative;
margin:0 98px 0 0;
}
.sectionrestore .restorebtn a.cancel {
position:relative;
margin:-27px 0 0 135px;
}
.sectionrestore .restorebtn a {
width:85px;
height:21px;
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #0C274D;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:14px;
font-weight:bold;
padding:2px 0;
line-height:21px;
text-decoration:none;
text-align:center;
float:right;
}
.sectionrestore .restorebtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionrestore .restorebtn a:active {
position:relative;
top:1px;
}
.sectionrestore .restorebtn a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
.sectionrestore .restorebtn a:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
\ No newline at end of file
/* CSS Document */
@charset "utf-8";
/* Latest Update
2012.10.31 write */
/* author
keiki ettyuu */
/* ---------- MENU ---------- */
/*
1. gloval setting
2. wrapper setting
3. header setting
4. footer setting
5. .section setting
999. clearfix
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. gloval setting */
/*----------------------------*/
html,body{
width:100%;
}
body{
}
/*----------------------------*/
/* 2. wrapper setting */
/*----------------------------*/
#wrapper {
height:100%;
}
/*----------------------------*/
/* 3. header setting */
/*----------------------------*/
/*----------------------------*/
/* 4. footer setting */
/*----------------------------*/
/*----------------------------*/
/* 5. .section setting */
/*----------------------------*/
#main{
width: 960px;
padding: 0;
background-color: #EDF2F2;
margin-right: auto;
margin-left: auto;
}
article{
width: 960px;
/*height: 900px;*/
padding: 0;
display: block;
overflow: hidden;
margin-top: 30px;
margin-bottom: 30px;
}
.sectionSetting{
width: 960px;
display: block;
margin-right: auto;
margin-left: auto;
}
.sectionSetting div#user_info{
margin-bottom: 40px;
}
.sectionSetting div#user_info h2{
padding-bottom: 8px;
margin-bottom: 25px;
font-size: 24px;
font-weight: bold;
color: #37648C;
border-bottom: 3px solid #37648C;
}
.sectionSetting div#user_info dl{
width: inherit;
list-style: none;
text-align: left;
font-size: 16px;
border-top: 1px dotted #BBBBBB;
}
.sectionSetting div#user_info dl dt, .sectionSetting div#user_info dl dd{
padding: 13px 20px;
margin: 0;
border-bottom: 1px dotted #BBBBBB;
}
.sectionSetting div#user_info dl dt{
width: 160px;
float: left;
background-color: #DCE6E6;
color: #37648C;
font-weight: bolder;
}
.sectionSetting div#user_info dl dd{
width: 720px;
float: left;
}
.sectionSetting div#user_info .passchgbtn {
clear:both;
padding-top:11px;
}
.sectionSetting div#user_info .passchgbtn a {
width: 125px;
height: 21px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
/* [disabled]background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) ); */
background: -moz-linear-gradient( center top,#36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 14px;
font-weight: bold;
padding: 10px 20px;
line-height: 21px;
text-decoration: none;
/* [disabled]text-shadow: 1px 1px 0px #96AABE; */
margin: 10px 0 0 0;
text-align: center;
}
.sectionSetting div#user_info .passchgbtn a:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background: -moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color: #23486F;
}
.sectionSetting div#user_info .passchgbtn a:active {
position:relative;
top:1px;
}
.sectionSetting div#user_info .passchgbtn a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
background-repeat: repeat-x;
}
.sectionSetting div#user_info .passchgbtn a:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
background-position: bottom;
}
div#user_option{
width: inherit;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
background-color: #FFF;
padding-top: 30px;
/*height: 480px;*/
margin-top: 60px;
}
div#user_option h3{
padding: 10px;
margin: 0 30px 15px 30px;
font-size: 18px;
font-weight: bold;
color: #37648C;
background-color: #EDF2F2;
}
div#user_option ul {
list-style:none;
padding:0;
margin:0 0 2px 30px;
line-height:26px;
font-size:13px;
}
div#user_option ul li .choice {
margin-right: 30px;
}
div#user_option ul li .notice {
font-size:11px;
margin-left:8px;
}
div#user_option ul li input {
display: inline;
vertical-align: 1px;
margin: 0 5px 0 0;
padding: 0;
}
div#user_option ul li input.chkbx {
margin-right:10px;
}
.sectionSetting div#user_option .backupbtn .backup{
margin-right:10px;
}
.sectionSetting div#user_option .logout_backup{
margin:0 0 16px 30px;
font-size:13px;
}
.sectionSetting div#user_option input {
display: inline;
vertical-align: 1px;
margin: 0 10px 0 0;
padding: 0;
}
.sectionSetting div#user_option .backupbtn {
margin: 0 0 20px 30px;
}
.sectionSetting div#user_option .backupbtn a {
width: 125px;
height: 21px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background: -moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 14px;
font-weight: bold;
padding: 10px 20px;
line-height: 21px;
text-decoration: none;
/* [disabled]text-shadow: 1px 1px 0px #a2d613; */
margin: 0 0 0 0;
text-align: center;
}
.sectionSetting div#user_option .backupbtn a:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background: -moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color: #23486F;
}
.sectionSetting div#user_option .backupbtn a:active {
position:relative;
top:1px;
}
.sectionSetting div#user_option .backupbtn a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
background-repeat: repeat-x;
}
.sectionSetting div#user_option .backupbtn a:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
background-position: bottom;
background-repeat: repeat-x;
}
.sectionSetting #user_option .savebtn{
border-top: 1px solid #CCC;
margin-right: 30px;
margin-left: 30px;
padding-top: 30px;
padding-right: 0;
padding-bottom: 0;
padding-left: 30px;
}
.sectionSetting #user_option .savebtn a {
width: 125px;
height: 21px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background: -moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
display: inline-block;
color: #ffffff;
font-family: arial;
font-size: 14px;
font-weight: bold;
padding: 10px 20px;
line-height: 21px;
text-decoration: none;
/* [disabled]text-shadow: 1px 1px 0px #a2d613; */
margin: 0 0 0 0;
text-align: center;
float: right;
}
.sectionSetting #user_option .savebtn a:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background: -moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color: #23486F;
}
.sectionSetting #user_option .savebtn a:active {
position:relative;
top:1px;
}
.sectionSetting #user_option .savebtn a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
background-repeat: repeat-x;
}
.sectionSetting #user_option .savebtn a:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
background-repeat: repeat-x;
background-position: bottom;
}
.sectionSetting #user_option .savebtn .save{
margin: 0 175px 0 0;
}
.sectionSetting #user_option .savebtn .default{
margin: 0 -345px 0 0;
display: inline-block;
}
.sectionSetting .memory{
width:300px;
font-size:12px;
vertical-align:middle;
margin:50px auto 0;
}
.sectionSetting .memory input{
vertical-align:middle;
margin:0 5px 0;
padding:0;
}
.sectionSetting .loginbtn {
width:300px;
margin:14px auto 0;
}
.sectionSetting .loginbtn a {
width:85px;
height:21px;
-moz-box-shadow:inset 0px 1px 0px 0px #d6ee23;
-webkit-box-shadow:inset 0px 1px 0px 0px #d6ee23;
box-shadow:inset 0px 1px 0px 0px #d6ee23;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background:-moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color:#a4d815;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #83bd07;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:14px;
font-weight:bold;
padding:2px 0;
line-height:21px;
text-decoration:none;
text-shadow:1px 1px 0px #a2d613;
margin:0 0 0 0;
text-align:center;
float:right;
}
.sectionSetting .loginbtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background:-moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color:#83c008;
}
.sectionSetting .loginbtn a:active {
position:relative;
top:1px;
}
.alertTxt,.alertTxtDialog {
position:absolute;
margin:-20px 0 0 49px;
font-size:13px;
color:#e60012;
display:block;
text-align:center;
width:300px;
}
/*----------------------------*/
/* 999. clearfix */
/*----------------------------*/
/*clearfix*/
.fix {
}
.fix:after {
font-size:1px;
content:".";
display:block;
height:0px;
clear:both;
visibility:hidden;
}
.fix {
zoom:1;
}
/*------------*/
#user_change article .sectionSetting #user_option ul li {
margin-top: 10px;
margin-bottom: 10px;
}
/* No.4 */
#cboAnimation
{
margin-left:120px;
}
.lblOptPageTransPeriod
{
padding-left:20px;
}
#txtValueAnimation
{
width:30px;
border:solid 1px #222;
text-align:center;
}
#slidebar-animation
{
display:inline-block;
width:200px;
margin:0 8px;
}
#slidebar-container
{
display:inline-block;
padding:0 5px;
}
\ No newline at end of file
@charset "utf-8";
.anket-dialog
{
border:solid 1px #333;
background-color:#fff;
}
.anket-dialog h1
{
color:#fff;
background:url(../../img/viewer/article_bg.png) 0 0 repeat;
}
.anket-dialog .anket-container
{
}
.anket-dialog .anket-container iframe
{
}
.anket-dialog .anket-commands
{
border-top:solid 1px #333;
}
.anket-dialog .anket-commands input[type='button']
{
border-radius:10px;
border:solid 1px #333;
background-color:#ccc;
cursor:pointer;
}
.anket-dialog .anket-commands input[type='button']:hover
{
background-color:#fff;
}
\ No newline at end of file
@charset "utf-8";
/*アコーディオン用*/
.ui-helper-reset {font-size: 100%;}
/* states and images */
.ui-icon { background-image: url(img/ui-icons_222222_256x240.png); }
.ui-state-default .ui-icon { background-image: url(img/ui-icons_888888_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon,.ui-state-active .ui-icon {background-image: url(img/ui-icons_454545_256x240.png); }
/* positioning */
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
/* jQuery UI Accordion 1.8.11*/
.ui-accordion { }
.ui-accordion .ui-accordion-header { }
.ui-accordion .ui-accordion-li-fix { }
.ui-accordion .ui-accordion-header-active { }
.ui-accordion .ui-accordion-header a { font-size: 1em; }
.ui-accordion-icons .ui-accordion-header a { }
.ui-accordion .ui-accordion-header .ui-icon { }
.ui-accordion .ui-accordion-content { }
.ui-accordion .ui-accordion-content-active { }
#accordion p,#mouseover p{}
.cnt_header .menu_language .button #accordion {
font-size: 12px;
border:1px solid #CCC;
background-color: #FFFFFF;
}
.cnt_header .menu_language .button #accordion h5{
border-bottom: 1px solid #CCC;
background: #FFFFFF;
}
.cnt_header .menu_language .button #accordion h5 a { }
.cnt_header .menu_language .button #accordion h5 a:hover { }
.cnt_header .menu_language .button #accordion .newmsg { border-bottom:1px solid #CCC;}
.cnt_header .menu_language .button #accordion .newmsg p {
}
.cnt_header .menu_language .button #accordion .pagechange a {
}
.cnt_header .menu_language .button #accordion .date {
font-size: 10px;
}
.postItem a{}
.postItem a.open{}
header .cnt_header .menu_language #searchArea {
background-color: #FFFFFF;
border: 1px solid #CCCCCC;
}
header .cnt_header .menu_language #searchArea a#searchbtn {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
}
header .cnt_header .menu_language #searchArea a#searchbtn:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
a#searchbtn:active{
}
#numbermessage
{
}
\ No newline at end of file
@charset "utf-8";
/* Latest Update
2012.11.5 write */
/* author
koyuki watanabe */
/* ---------- MENU ---------- */
/*
5. .sectionbackup setting
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. .sectionbackup setting */
/*----------------------------*/
.sectionbackup{
border:1px solid #cccccc;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color:#fff;
}
.sectionbackup h1
{
font-size:19px;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
.sectionbackup p{
}
.sectionbackup p.message{
color:#333;
font-size:15px;
font-weight:bold;
}
.sectionbackup .backupbtn {
}
.sectionbackup .backupbtn a.ok
{
}
.sectionbackup .backupbtn a.disabled
{
cursor:default;
color:#9e9e9e;
pointer-events: none;
}
.sectionbackup .backupbtn a.disabled:hover
{
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
}
.sectionbackup .backupbtn a.cancel {
}
.sectionbackup .backupbtn a
{
font-size:14px;
font-weight:bold;
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
border:1px solid #0C274D;
color:#ffffff;
font-family:arial;
}
.sectionbackup .backupbtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionbackup .backupbtn a:active {
}
.sectionbackup .backupbtn a:not(:target) {
background-image: url(button_back_off.svg);
}
.sectionbackup .backupbtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.sectionbackup_logout{
border:1px solid #cccccc;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color:#fff;
}
.sectionbackup_logout h1
{
font-size:19px;
font-weight:bold;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
.sectionbackup_logout .message-options .option_backup
{
font-size:13px;
}
.sectionbackup_logout .message-options .option_backup input
{
}
.sectionbackup_logout p{
}
.sectionbackup_logout p.notice
{
font-size:13px;
}
.sectionbackup_logout p.message
{
font-size:15px;
font-weight:bold;
color:#333;
}
.sectionbackup_logout .backupbtn {
}
.sectionbackup_logout .backupbtn a.ok {
}
.sectionbackup_logout .backupbtn a.disabled
{
cursor:default;
color:#9e9e9e;
pointer-events: none;
}
.sectionbackup_logout .backupbtn a.disabled:hover
{
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
}
.sectionbackup_logout .backupbtn a.cancel {
}
.sectionbackup_logout .backupbtn a
{
font-size:14px;
font-weight:bold;
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
border:1px solid #0C274D;
color:#ffffff;
font-family:arial;
}
.sectionbackup_logout .backupbtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionbackup_logout .backupbtn a:active {
}
.sectionbackup_logout .backupbtn a:not(:target) {
background-image: url(button_back_off.svg);
}
.sectionbackup_logout .backupbtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
}
\ No newline at end of file
@charset "utf-8";
.thumbnail a:link{
text-decoration: none;
background-image: url(../../img/bookshelf/thumbnail_off.png) ;
background-repeat: no-repeat;
background-position: center center;
border-radius: 3px 0px 0px 3px;
}
.thumbnail a:hover{
text-decoration: none;
background-color: #D6E5E5;
background-image: url(../../img/bookshelf/thumbnail_on.png);
background-repeat: no-repeat;
background-position: center center;
border-radius: 3px 0px 0px 3px;
}
.thumbnail_select{
text-decoration: none;
background-color: #D6E5E5;
background-image: url(../../img/bookshelf/thumbnail_on.png);
background-repeat: no-repeat;
background-position: center center;
border-radius: 3px 0px 0px 3px;
}
#bookshelf .wrapper_ws #main-ws .hoge-R section.sectionhomebookshelf .name img {
}
/* section */
section.sectionhomebookshelf{
}
p.dop_info{
border:1px solid #999999;
background:#fff;
}
p.dop_info a{ font-size:12px; color:#333333;}
p.dop_info a:hover{ text-decoration:none;}
.cnt_section_bookshelf{
}
section.sectionhomebookshelf .cnt_section_bookshelf:hover{
background-color: #EDEDED;
}
.cnt_section_bookshelf a.img{
}
.cnt_section_bookshelf a.img img{
}
.cnt_section_bookshelf .text{
}
.sectionhomebookshelf a.name{
color: #333333;
font-size: 12px;
text-decoration: none;
}
.sectionhomebookshelf a.name div.content-title{
width:150px;
white-space: nowrap; /* 改行を半角スペースに置き換える */
overflow: hidden; /* はみだした部分を削除する */
text-overflow: ellipsis;
}
.cnt_section_bookshelf a.name:hover{ text-decoration:underline; color:#2d83da;}
.cnt_section_bookshelf .text ul.date{ }
.cnt_section_bookshelf .text ul.date li{ color:#333333; font-size:11px;}
.cnt_section_bookshelf .text .info{}
.cnt_section_bookshelf .text ul.pic{ }
.cnt_section_bookshelf .text ul.pic li{}
.cnt_section_bookshelf .text ul.pic li a{ }
.cnt_section_bookshelf .text ul.pic li a.sticker{background:url(../../img/bookshelf/pic_1.png) no-repeat left bottom;}
.cnt_section_bookshelf .text ul.pic li a.pen{ background:url(../../img/bookshelf/pic_2.png) no-repeat 0 center;}
.cnt_section_bookshelf .text ul.pic li a.read {
-moz-box-shadow:inset 0px 1px 0px 0px #d6ee23;
-webkit-box-shadow:inset 0px 1px 0px 0px #d6ee23;
box-shadow:inset 0px 1px 0px 0px #d6ee23;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background:-moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color:#a4d815;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #83bd07;
color:#ffffff;
font-family:arial;
font-size:15px;
font-weight:bold;
text-decoration:none;
text-shadow:1px 1px 0px #a2d613;
}
.cnt_section_bookshelf .text ul.pic li a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background:-moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color:#83c008;
}
.cnt_section_bookshelf .text ul.pic li a.read:active {
}
.cnt_section_bookshelf .text ul.pic li a.read_hover {
-moz-box-shadow:inset 0px 1px 0px 0px #b6b3b3;
-webkit-box-shadow:inset 0px 1px 0px 0px #b6b3b3;
box-shadow:inset 0px 1px 0px 0px #b6b3b3;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #777575), color-stop(1, #3f3d3d) );
background:-moz-linear-gradient( center top, #777575 5%, #3f3d3d 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#777575', endColorstr='#3f3d3d');
background-color:#777575;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #63636d;
color:#ffffff;
font-family:arial;
font-size:15px;
font-weight:bold;
text-decoration:none;
text-shadow:1px 1px 0px #686666;
}.cnt_section_bookshelf .text ul.pic li a.read_hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #3f3d3d), color-stop(1, #777575) );
background:-moz-linear-gradient( center top, #3f3d3d 5%, #777575 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3f3d3d', endColorstr='#777575');
background-color:#3f3d3d;
}.cnt_section_bookshelf .text ul.pic li a.read_hover:active {
}
.btn_bott{
font-size: 14px;
color: #fff;
text-decoration: none;
border: 1px solid #0C284E;
border-radius: 4px;
/*outline:1px solid #0C284E;*/
background: #37648C; /* Old browsers */
background: -moz-linear-gradient(top, #37648C 0%, #22466D 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#37648C), color-stop(100%,#22466D)); /* Chrome,Safari4+ */
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-linear-gradient(top, #37648C 0%,#22466D 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #37648C 0%,#22466D 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #37648C 0%,#22466D 100%); /* IE10+ */
background: linear-gradient(to bottom, #37648C 0%,#22466D 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37648C', endColorstr='#22466D',GradientType=0 ); /* IE6-9 */
}
a:hover.btn_bott{
background: #22466D; /* Old browsers */
background: -moz-linear-gradient(top, #22466D 0%, rgb(16,89,163) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#22466D), color-stop(100%,#37648C)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #22466D 0%,#37648C 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #22466D 0%,#37648C 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #22466D 0%,#37648C 100%); /* IE10+ */
background: linear-gradient(to bottom, #22466D 0%,#37648C 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22466D', endColorstr='#37648C',GradientType=0 ); /* IE6-9 */
}
#bookshelf .wrapper_ws #main-ws .hoge-R .tops .floatR {
}
#bookshelf .wrapper_ws #main-ws .hoge-R section .cnt_section_bookshelf .img .band_vertical {
}
#bookshelf .wrapper_ws #main-ws .hoge-R section .cnt_section_bookshelf .img .band_horizontal {
}
.wrapper_ws #main-ws .hoge-R section .cnt_section_bookshelf .img .book_horizontal {
}
.wrapper_ws #main-ws .hoge-R .cnt_section_bookshelf .img .book_vertical {
}
@charset "utf-8";
/* Latest Update
2012.11.5 write */
body{
background: #f4f4f4;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
.wrapper {
background-color: #EDF2F2;
}
form, ul{ }
li{ }
img{ }
#main-ws{
}
p.go_top{
}
.focus{ color: #969696;}
#user_change footer .border .cnt_footer img { }
/*2013*/
.PageTop {
}
/*CLEARFIX*/
.clearfix:after { }
.clearfix { }
/*\*/
* html .clearfix { }
.clearfix { }
/**/
.clearboth {}
br.clear { }
.floatL { }
.floatR { }
#avw-auth-error
{
color: #fff;
background: #ccc;
}
@charset "utf-8";
.articlecontentsearch{
border:1px solid #ccc;
}
.tops{
}
.tops a.btn_gray img, .tops a.btn_blue img{
}
.tops a.btn_blue,.tops a.btn_gray
{
color:#fff;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}
.tops a:hover.btn_blue,.tops a:hover.btn_gray {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.tops a.btn_blue:active,.tops a.btn_gray:active {
}
.tops a.btn_blue:not(:target),.tops a.btn_gray:not(:target) {
background-image: url(button_back_off.svg);
}
.tops a:hover.btn_blue:not(:target),.tops a:hover.btn_gray:not(:target) {
background-image: url(button_back_on.svg);
}
.button{ }
.tops ul{ }
.tops ul li{ }
.tops ul li a{
font-size:12px;
color:rgb(45,131,218);
}
.tops ul li span{
font-size:12px;
color:#333333;
}
.tops ul li a.nottouchdevice:hover{ }
.tops ul li a.gray_text{ color:#999999;}
.tops ul li a.active_tops{ color:#2d83da; }
.tops ul li b{ font-weight:normal; font-size:12px;}
.tops p{ color:#333333; font-size:12px; }
/* section */
.sectionsearchlist{
border-top: 1px dashed #cccccc;
}
.cnt_section_list{
}
.cnt_section_list:hover{
background-color: #FFFFFF;
}
.cnt_section_list a.img{
}
.cnt_section_list a.img img{
}
/*.cnt_section_list a.img img.book_icon{
position:absolute;
top:0px;
left:0px;
z-index:10;
}*/
.cnt_section_list .text{
}
.cnt_section_list .text a.name{
color: #37648C;
font-size: 16px;
}
.cnt_section_list .text a.name img
{
}
.cnt_section_list .text a.name:hover{ }
.cnt_section_list .text ul.date{ }
.cnt_section_list .text ul.date li{
color:#333333;
font-size:13px;
}
/*---*/
.cnt_section_list .text .info{
}
.cnt_section_list .text ul.pic{
}
.cnt_section_list .text ul.pic li{
}
.cnt_section_list .text ul.pic li img {
}
.cnt_section_list .text ul.pic li a.read {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}
.cnt_section_list .text ul.pic li a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read:active {
}
.cnt_section_list .text ul.pic li a.read:not(:target) {
background-image: url(button_back_off.svg);
}
.cnt_section_list .text ul.pic li a.read:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.cnt_section_list .text ul.pic li a.read_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}.cnt_section_list .text ul.pic li a.read_hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read_hover:active {
}
.btn_bott
{
font-size: 14px;
color: #fff;
border: 1px solid #0C284E;
background: #37648C; /* Old browsers */
background: -moz-linear-gradient(top, #37648C 0%, #22466D 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#37648C), color-stop(100%,#22466D)); /* Chrome,Safari4+ */
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-linear-gradient(top, #37648C 0%,#22466D 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #37648C 0%,#22466D 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #37648C 0%,#22466D 100%); /* IE10+ */
background: linear-gradient(to bottom, #37648C 0%,#22466D 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37648C', endColorstr='#22466D',GradientType=0 ); /* IE6-9 */
}
a:hover.btn_bott{
background: #22466D; /* Old browsers */
background: -moz-linear-gradient(top, #22466D 0%, rgb(16,89,163) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#22466D), color-stop(100%,#37648C)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #22466D 0%,#37648C 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #22466D 0%,#37648C 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #22466D 0%,#37648C 100%); /* IE10+ */
background: linear-gradient(to bottom, #22466D 0%,#37648C) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22466D', endColorstr='#37648C',GradientType=0 ); /* IE6-9 */
}
.sectionsearchlist #bottom
{
}
.cnt_section_list .img .band_horizontal {
}
.cnt_section_list .img .band_vertical {
}
.cnt_section_list .text .info .pic li .read {
}
#main-ws section
{
border-top: 1px dashed #cccccc;
}
#main-searchresult
{
border:1px solid #ccc;
}
#main-searchresult span
{
}
#main-searchresult input
{
}
#main-searchresult input[type="radio"]
{
}
.tops a.btn_gray, .tops a.btn_blue{
color:#fff;
}
a:hover
{
}
#main-searchresult span:hover
{
}
#msgSearchNotExist
{
font-size: 16px;
color: #f00;
}
.sort-title{
font-size: 12px;
color: #333333;
text-decoration: none;
}
@charset "utf-8";
.sectionDeleteConfirm {
border:1px solid #cccccc;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color: #ffffff;
}
.sectionDeleteConfirm h1
{
font-size:19px;
font-weight:bold;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
.sectionDeleteConfirm p{
}
.sectionDeleteConfirm p.message{
font-size:15px;
font-weight:bold;
color:#333;
}
.sectionDeleteConfirm .deletebtn {
}
.sectionDeleteConfirm .deletebtn a.ok {
}
.sectionDeleteConfirm .deletebtn a.cancel {
}
.sectionDeleteConfirm .deletebtn a.cancel_audio {
}
.sectionDeleteConfirm .deletebtn a {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}
.sectionDeleteConfirm .deletebtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionDeleteConfirm .deletebtn a:active {
}
.sectionDeleteConfirm .deletebtn a:not(:target) {
}
\ No newline at end of file
@charset "utf-8";
/* footer */
#ws-body footer{
background-color: #EDF2F2;
}
.cnt_footer{
color: #000;
font-size: 10px;
border-top: solid 1px #CCC;
}
@charset "utf-8";
.header_ws{
background-image: url(../../img/common/header_border.jpg) ,url(../../img/common/header_bg.jpg);
background-repeat: repeat-x, repeat;
background-position: bottom, top;
}
.cnt_header{
}
.cnt_header .logo{
background-image: url(../../img/common/logo.png);
background-repeat: no-repeat;
}
.cnt_header .menu_language{
font-size: 12px;
color: #333333;
}
.cnt_header .menu_language ul{
}
.cnt_header .menu_language ul li{
}
.cnt_header .menu_language ul li input{
border: 1px solid #999999;
border-radius: 3px;
font-size: 12px;
background: url(../../img/common/icon_serch.png) 3px 2px no-repeat;
behavior: url("/PIE.htc");
}
.cnt_header .menu_language ul li a{
color:#000;
text-decoration:none;
}
.cnt_header .menu_language ul li a:hover{
text-decoration:underline;
}
.cnt_header .menu_language ul li.jp{
background: url(../../img/common/flg_jpn.png) no-repeat left center;
}
.cnt_header .menu_language ul li.eng{
background: url(../../img/common/flg_usa.png) no-repeat left center;
}
.cnt_header .menu_language ul li.kor{
background: url(../../img/common/flg_kor.png) no-repeat left center;
}
.button{ }
.cnt_header .box_open{
background:#fff;
}
.cnt_header .box_open .t_top{
color:#cccccc;
font-size:10px;
border-bottom:1px solid #999999;
}
.cnt_header .box_open ul{ }
.cnt_header .box_open ul li{
color:#333333;
font-size:12px;
}
.cnt_header .box_open ul li input{ }
.cnt_header .box_open ul li label{ }
.cnt_header .box_open .btn_search{
background:url(../../img/common/btn_search.png) no-repeat;
}
.cnt_header .menu_language ul .pushMessage {
/*background-image: url(../../img/common/icon_newmessage.png), url(../../img/common/icon_triangle.png), url(../../img/common/box_pushmessage.jpg);
background-repeat: no-repeat, no-repeat, repeat-x;
background-position: 5px center, right 5px center, bottom;
border: solid 1px #CCCCCC;*/
background: url(../../img/common/box_pushmessage.jpg) repeat-x;
border: solid 1px #CCCCCC;
}
.cnt_header .menu_language ul .pushMessage span
{
float:left;
display:block;
height:25px;
}
.cnt_header .menu_language ul .pushMessage .icon
{
background: url(../../img/common/icon_newmessage.png) no-repeat center;
width:26px;
}
.cnt_header .menu_language ul .pushMessage .arrow
{
background: url(../../img/common/icon_triangle.png) no-repeat center;
width:6px;
margin-right:5px;
}
.cnt_header .menu_language ul.pushMessage a:hover { text-decoration: none; }
.header_ws .cnt_header .menu_language ul li a img { display: inline; }
.header_ws .cnt_header .menu_language ul .language {
padding: 0;
margin-left: 0px;
}
.header_ws .cnt_header .menu_language .button .menuIcon img { display: inline; }
.header_ws .cnt_header .menu_language ul li a#jQueryPush{
text-decoration: none !important;
color:#333;
}
.header_ws .cnt_header .menu_language .button {
}
.header_ws .cnt_header .menu_language #header-searchbox {
background-color: #FFFFFF;
border: 1px solid #CCCCCC;
}
.header_ws .cnt_header .menu_language #header-searchbox span
{
}
.header_ws .cnt_header .menu_language #header-searchbox a#searchbox-search {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
}
.header_ws .cnt_header .menu_language #header-searchbox a#searchbox-search:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
a#searchbox-search:active{
}
.tops ul.sort {
border: 1px solid #B3B3B3;
border-radius: 4px;
}
.tops ul.sort li{
}
.tops ul.sort li a{
font-size: 12px;
color: #333333;
text-decoration: none;
}
.tops ul.sort li.sort a:hover{ text-decoration:underline;}
.tops ul.sort li.current a.descending_sort{
color: #2d83da;
background: url(../../img/common/icon_triangle_d.png) no-repeat right 5px;
}
.tops ul.sort li.current a.ascending_sort{
color:#2d83da;
background:url(../../img/common/icon_triangle_u.png) no-repeat right 5px;
}
.tops ul.sort li b{
font-weight: normal;
font-size: 12px;
}
.tops ul.sort li b{
font-weight: normal;
font-size: 12px;
}
/* for pushmessage */
.notification-pushmessage
{
background-color:#bde;
opacity:0.8;
border:solid 1px #333;
color:#000;
border:solid 1px #000;
font-weight:bold;
font-size:13px;
}
.toast-item-loading
{
text-align:center;
height:40px;
background:url(../../img/data_loading.gif) no-repeat center;
}
\ No newline at end of file
@charset "utf-8";
.articlehistory{
border:1px solid #ccc;
}
.tops{
font-size:12px;
}
.tops a.btn_gray img, .tops a.btn_blue img{
}
.tops a.btn_blue,.tops a.btn_gray
{
color:#fff;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
/* [disabled]text-shadow:1px 1px 0px #a2d613; */
}
.tops a:hover.btn_blue,.tops a:hover.btn_gray {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.tops a.btn_blue:active,.tops a.btn_gray:active {
/*position:relative;
top:1px;*/
}
.tops a.btn_blue:not(:target),.tops a.btn_gray:not(:target) {
background-image: url(button_back_off.svg);
}
.tops a:hover.btn_blue:not(:target),.tops a:hover.btn_gray:not(:target) {
background-image: url(button_back_on.svg);
}
.button{ }
.tops ul{ }
.tops ul li{ }
.tops ul li a{
font-size:12px;
color:rgb(45,131,218);
}
.tops ul li span{
font-size:12px;
color:#333333;
}
.tops ul li a.nottouchdevice:hover{ }
.tops ul li a.gray_text{ color:#999999;}
.tops ul li a.active_tops{ color:#2d83da; }
.tops ul li b{ font-weight:normal; font-size:12px;}
.tops p{ color:#333333; font-size:12px;}
/* section */
.sectionhistory{
border-top: 1px dashed #cccccc;
}
.cnt_section_list{
}
section.sectionhistory .cnt_section_list:hover{
background-color: #EDEDED;
}
.cnt_section_list a.img{
}
.cnt_section_list a.img img{
}
/*.cnt_section_list a.img img.book_icon{
position:absolute;
top:0px;
left:0px;
z-index:10;
}*/
.cnt_section_list .text{
}
.cnt_section_list .text a.name{
color: #37648C;
font-size: 18px;
font-size: 16px;
display:inline-block;
display: -ms-inline-grid;
}
.cnt_section_list .text a div.test1{
overflow: hidden;
text-overflow: ellipsis;
-webkit-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
width: 600px;
margin-left: 30px;
}
.cnt_section_list .text a.name img
{
}
.cnt_section_list .text a.name:hover{ }
.cnt_section_list .text ul.date{ }
.cnt_section_list .text ul.date li{
color:#333333;
font-size:13px;
}
/*---*/
.cnt_section_list .text .info{
}
.cnt_section_list .text ul.pic{
}
.cnt_section_list .text ul.pic li{
}
.cnt_section_list .text ul.pic li img {
}
.cnt_section_list .text ul.pic li a.read {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}
.cnt_section_list .text ul.pic li a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read:active {
/*position:relative;
top:1px;*/
}
.cnt_section_list .text ul.pic li a.read:not(:target) {
background-image: url(button_back_off.svg);
}
.cnt_section_list .text ul.pic li a.read:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.cnt_section_list .text ul.pic li a.read_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}.cnt_section_list .text ul.pic li a.read_hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read_hover:active {
/*position:relative;
top:1px;*/
}
.cnt_section_list .img .band_horizontal {
}
.cnt_section_list .img .band_vertical {
}
.cnt_section_list .text .info .pic li .read {
}
#main-searchresult
{
border:1px solid #ccc;
}
#main-searchresult span
{
}
#main-searchresult input
{
}
#main-searchresult input[type="radio"]
{
}
.tops a.btn_gray, .tops a.btn_blue{
color:#fff;
}
a:hover
{
}
#main-searchresult span:hover
{
}
#msgSearchNotExist
{
}
#msgHistoryNotExist
{
color:#f00;
font-size:16px;
}
.sort-title{
font-size: 12px;
color: #333333;
text-decoration: none;
}
@charset "utf-8";
/* article */
.articlehome{
}
.tops{
font-size:12px;
}
.sort_area{
}
.sort_area span{
font-size:12px;
color:#333333;
text-decoration:none;
}
.tops p{
color: #333333;
font-size: 12px;
}
.tops ul.disp {
border-radius: 4px;
border: 1px solid #D1D1D1;
background-color:#F4F4F4;
box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1) #FFF !important;
}
.tops ul.disp li.first_area{
border-right: 1px solid #D1D1D1;
}
.tops ul.disp li.last_area{
}
.no_m_right{ }
#dlgSubMenu{
}
#dlgOverlay{
}
a:hover{
}
#main-ws canvas:hover{
}
.folder, .file{
}
.sectionhomebookshelf a.name{ color:#2d83da;}
/* hibiya */
#dlgAddMemberGroup .addMemberGroup {
width:290px;
height:25px;
margin:20px auto 0;
}
#dlgAddMemberGroup .addMemberGroup a.ok {
position:relative;
/*margin:0 98px 0 0;*/
}
#dlgAddMemberGroup .addMemberGroup a.cancel {
position:relative;
/*margin:-27px 0 0 135px;*/
}
#dlgAddMemberGroup .addMemberGroup a
{
margin:0 15px;
width: 100px;
height:21px;
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #0C274D;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:14px;
font-weight:bold;
padding:2px 0;
line-height:21px;
text-decoration:none;
text-align:center;
float:right;
}
#dlgAddMemberGroup .addMemberGroup a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
#dlgAddMemberGroup .addMemberGroup a:active {
position:relative;
top:1px;
}
#dlgAddMemberGroup .addMemberGroup a:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_off.svg);
}
#dlgAddMemberGroup .addMemberGroup a:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(button_back_on.svg);
}
@charset "utf-8";
.sectionLimitAccess {
border:1px solid #cccccc;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color: #ffffff;
}
.sectionLimitAccess h1
{
font-size:19px;
font-weight:bold;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
}
.sectionLimitAccess p{
}
.sectionLimitAccess p.message{
font-size:13px;
font-weight:bold;
color:#333;
}
.sectionLimitAccess p.message .error
{
color:#f00;
font-weight:normal;
}
.sectionLimitAccess p.message .text
{
font-size:15px;
margin-bottom:15px;
}
.sectionLimitAccess p.message input
{
background-color:#fff;
}
.sectionLimitAccess .deletebtn {
}
.sectionLimitAccess .deletebtn a
{
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}
.sectionLimitAccess .deletebtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionLimitAccess .deletebtn a:active {
}
.sectionLimitAccess .deletebtn a:not(:target) {
}
\ No newline at end of file
@charset "utf-8";
.list a:link{
text-decoration: none;
background-image: url(../../img/bookshelf/list_off.png);
background-repeat: no-repeat;
background-position: center center;
border-radius: 0px 3px 3px 0px;
}
.list a:hover{
text-decoration: none;
background-color:#D6E5E5;
background-image: url(../../img/bookshelf/list_on.png);
background-repeat: no-repeat;
background-position: center center;
border-radius: 0px 3px 3px 0px;
}
.list_select{
text-decoration: none;
background-color:#D6E5E5;
background-image: url(../../img/bookshelf/list_on.png);
background-repeat: no-repeat;
background-position: center center;
border-radius: 0px 3px 3px 0px;
}
#list .wrapper_ws #main-ws .hoge-R section.sectionhomelist .name img {
}
/* section */
section.sectionhomelist{
border-top: 1px dashed #cccccc;
}
.cnt_section_list{
}
section.sectionhomelist .cnt_section_list:hover{
background-color:#EDEDED;
}
.cnt_section_list a.img{
}
.cnt_section_list a.img:hover{
}
.cnt_section_list a.img canvas{
}
.cnt_section_list .text{
}
.cnt_section_list .text a.name{
color: #37648C;
font-size: 16px;
display: inline-flex;
}
.cnt_section_list .text a .content-list{
width:420px;
white-space: nowrap; /* 改行を半角スペースに置き換える */
overflow: hidden; /* はみだした部分を削除する */
text-overflow: ellipsis;
}
.cnt_section_list .text a.name:hover{ text-decoration:none;}
.cnt_section_list .text ul.date{
}
.cnt_section_list .text ul.date li{
color: #333333;
font-size: 12px;
}
/*---*/
.cnt_section_list .text .info{
}
.cnt_section_list .text ul.pic{
}
.cnt_section_list .text ul.pic li{
}
.cnt_section_list .text ul.pic li img {
}
.cnt_section_list .text ul.pic li img.sticker {
}
.cnt_section_list .text ul.pic li img.pen {
}
.cnt_section_list .text ul.pic li a.read {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background: -moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
text-decoration: none;
/* [disabled]text-shadow:1px 1px 0px #a2d613; */
}
.cnt_section_list .text ul.pic li a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.cnt_section_list .text ul.pic li a.read:active {
}
.cnt_section_list .text ul.pic li a.read:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(../../img/list/button_back_off.svg);
}
.cnt_section_list .text ul.pic li a.read:hover:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(../../img/list/button_back_on.svg);
}
.cnt_section_list .text ul.pic li a.read_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background: -moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color: #23486F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
text-decoration: none;
}
.cnt_section_list .text ul.pic li a.read_hover:hover {
/*background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #3f3d3d), color-stop(1, #777575) );
background:-moz-linear-gradient( center top, #3f3d3d 5%, #777575 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3f3d3d', endColorstr='#777575');
background-color:#3f3d3d;*/
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section_list .text ul.pic li a.read_hover:active {
}
.btn_bott{
font-size: 14px;
color: #fff;
text-align: center;
text-decoration: none;
border: 1px solid #0C284E;
border-radius: 4px;
/*outline:1px solid #0C284E;*/
background: #37648C; /* Old browsers */
background: -moz-linear-gradient(top, #37648C 0%, #22466D 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#37648C), color-stop(100%,#22466D)); /* Chrome,Safari4+ */
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-linear-gradient(top, #37648C 0%,#22466D 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #37648C 0%,#22466D 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #37648C 0%,#22466D 100%); /* IE10+ */
background: linear-gradient(to bottom, #37648C 0%,#22466D 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37648C', endColorstr='#22466D',GradientType=0 ); /* IE6-9 */
}
a:hover.btn_bott{
background: #22466D; /* Old browsers */
background: -moz-linear-gradient(top, #22466D 0%, rgb(16,89,163) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#22466D), color-stop(100%,#37648C)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #22466D 0%,#37648C 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #22466D 0%,#37648C 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #22466D 0%,#37648C 100%); /* IE10+ */
background: linear-gradient(to bottom, #22466D 0%,#37648C) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22466D', endColorstr='#37648C',GradientType=0 ); /* IE6-9 */
}
#list .wrapper_ws #main-ws .hoge-R .tops .floatR {
}
#list .wrapper_ws #main-ws .hoge-R section .cnt_section_list .img .band_horizontal {
}
#list .wrapper_ws #main-ws .hoge-R section .cnt_section_list .img .band_vertical {
}
#list .wrapper_ws #main-ws .hoge-R section .cnt_section_list .text .info .pic li .read {
}
#list .wrapper_ws #main-ws article section .cnt_section_list .text .name .listIcon {
}
@charset "utf-8";
/* Latest Update
2012.11.5 write */
/* author
koyuki watanabe */
/* article */
a
{
}
.articleMain{
border: 1px solid #ccc;
}
.tops{
/*
margin-bottom:16px;
*/
font-size:12px;
}
.button{ }
#ws-body .delete {
-moz-box-shadow: inset 0px 1px 0px 0px #C66;
-webkit-box-shadow: inset 0px 1px 0px 0px #C66;
box-shadow: inset 0px 1px 0px 0px #C66;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #F33), color-stop(1, #CC0000) );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#F33', endColorstr='#CC0000');
background-color: #CC0000;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #990000;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
text-decoration: none;
background-position: center top;
}
#ws-body .delete:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #CC0000), color-stop(1, #F33) );
background:-moz-linear-gradient( center top, #CC0000 5%, #F33 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#CC0000', endColorstr='#F33');
background-color:#F33;
}
#ws-body .delete:active {
}
#ws-body a.delete:not(:target) {
filter: none;
-ms-filter: none;
/* background-image: url(button_back_off.svg);*/
}
#ws-body a.delete:hover:not(:target) {
filter: none;
-ms-filter: none;
/* background-image: url(button_back_on.svg);*/
}
#ws-body .delete_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #C66;
-webkit-box-shadow: inset 0px 1px 0px 0px #C66;
box-shadow: inset 0px 1px 0px 0px #C66;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #CC0000), color-stop(1, #F33) );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#CC0000', endColorstr='#F33');
background-color: #F33;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #990000;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
text-decoration: none;
/* [disabled]text-shadow:1px 1px 0px #686666; */
line-height: 20px;
background-position: center top;
}
#ws-body .delete:hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #CC0000), color-stop(1, #F33) );
background:-moz-linear-gradient( center top, #CC0000 5%, #F33 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#CC0000', endColorstr='#F33');
background-color:#F33;
}
#ws-body .delete:hover:active {
}
.tops ul{ }
.tops ul li{ }
.tops ul li a{
font-size:12px;
color:#333333;
}
.tops ul span{
font-size: 12px;
color: #333333;
}
.tops ul li a:hover{ }
.tops ul li b{ font-weight:normal; font-size:12px; }
.tops p{ color:#333333; font-size:12px; }
/* section */
.sectionBookmark{
border-top: 1px dashed #cccccc;
}
.cnt_section{
}
section.sectionBookmark .cnt_section:hover{
background-color: #EDEDED;
}
.cnt_section a.img
{
cursor:default;
}
.cnt_section .check{
}
.cnt_section a.img img{
}
/*.cnt_section a.img img.book_icon{
position:absolute;
top:0px;
left:0px;
z-index:10;
}*/
.cnt_section .text{
}
.cnt_section .text a.name{
color: #37648C;
font-size: 16px;
cursor:default;
text-decoration:none;
}
.cnt_section .text a.name div.pageTitle{
width:550px;
white-space: nowrap; /* 改行を半角スペースに置き換える */
overflow: hidden; /* はみだした部分を削除する */
text-overflow: ellipsis;
}
.cnt_section .text label.name
{
color: #2D83DA;
}
.cnt_section .text a.name img
{
}
.cnt_section .text a.name:hover{ }
.cnt_section .text ul.date{ }
.cnt_section .text ul.date li{
color:#333333;
font-size:13px;
}
/*---*/
.cnt_section .text .info{
}
.cnt_section .text ul.pic{
}
.cnt_section .text ul.pic li{
}
.cnt_section .text ul.pic li img {
}
.cnt_section .text ul.pic li a.read {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}.cnt_section .text ul.pic li a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section .text ul.pic li a.read:active {
}
.cnt_section .text ul.pic li a.read:not(:target) {
background-image: url(button_back_off.svg);
}
.cnt_section .text ul.pic li a.read:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.cnt_section .text ul.pic li a.read_hover {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}.cnt_section .text ul.pic li a.read_hover:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}.cnt_section .text ul.pic li a.read_hover:active {
}
.btn_bott{
background:url(../img/list/button_bottom.png) no-repeat;
}
section#bottom {
border-top: 1px dashed #cccccc;
}
#bookmark .wrapper_ws #main-ws article section .cnt_section .img .band_horizontal {
}
#bookmark .wrapper_ws #main-ws article section .cnt_section .img .band_vertical {
}
#bookmark .wrapper_ws #main-ws article section .cnt_section .text .info .pic li .read {
}
.shioriNotExist
{
font-size: 16px;
color: #f00;
}
@charset "utf-8";
#contentDetail{
}
.sectiondetail {
border: 1px solid #CCC;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color:#fff;
}
.closebtn {
background: url(../../img/login/close.png) 0 0 no-repeat;
}
.sectiondetail #book_data {
border-right: 2px solid #CCC;
background-color: #f7f7f7;
}
.sectiondetail #book_data .book_img {
}
.sectiondetail #book_data .book_img img{
}
.sectiondetail #book_data .book_img img.book_icon {
}
.sectiondetail #book_data ul {
font-size:13px;
}
.sectiondetail #book_data ul li {
}
.sectiondetail #book_data ul li.title {
font-size:18px;
line-height:1.3em;
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-webkit-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
}
.sectiondetail #book_data ul .date {
font-size:12px;
}
.sectiondetail #book_data ul .explain {
font-size:13px;
}
.sectiondetail #book_data .read_btn a.read {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}
.sectiondetail #book_data .read_btn a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectiondetail #book_data .read_btn a.read:active {
}
.sectiondetail #book_data .read_btn a.read:not(:target) {
background-image: url(button_back_off.svg);
}
.sectiondetail #book_data .read_btn a.read:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.sectiondetail #book_list {
}
.sectiondetail #book_list ul {
font-size: 13px;
}
.sectiondetail #book_list ul li {
}
.sectiondetail #book_list ul .list_img {
}
.sectiondetail #book_list ul .list_img img {
box-shadow: 0px 1px 3px 0px #666;
}
.sectiondetail #book_list ul .list_title{
font-size: 12px;
line-height:150%;
}
.sectiondetail #book_list ul .list_title a {
color: #37648C;
text-decoration:none;
cursor:default;
}
.sectiondetail #book_list ul .page,.sectiondetail #book_list ul .text{ }
.sectiondetail #book_list ul+ul { border-top:1px dotted #CCC;}
.sectiondetail #book_data .read_btn {
/*margin:30px 0 0 80px;*/
}
/* section for detail no pdf */
.sectiondetailnopdf{
border: 1px solid #CCC;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color: #f7f7f7;
}
.sectiondetailnopdf #book_data {
background-color: #f7f7f7;
}
.sectiondetailnopdf #book_data .book_img {
}
.sectiondetailnopdf #book_data .book_img img{
}
.sectiondetailnopdf #book_data .book_img img.book_icon {
}
.sectiondetailnopdf #book_data ul {
font-size: 13px;
}
.sectiondetailnopdf #book_data ul li {
}
.sectiondetailnopdf #book_data ul .title {
font-size: 18px;
}
.sectiondetailnopdf #book_data ul .date {
font-size: 12px;
}
.sectiondetailnopdf #book_data ul .explain {
font-size: 13px;
}
.sectiondetailnopdf #book_data .read_btn a.read {
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
font-size: 15px;
font-weight: bold;
}
.sectiondetailnopdf #book_data .read_btn a.read:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectiondetailnopdf #book_data .read_btn a.read:active {
}
.sectiondetailnopdf #book_data .read_btn a.read:not(:target) {
background-image: url(button_back_off.svg);
}
.sectiondetailnopdf #book_data .read_btn a.read:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.sectiondetailnopdf #book_list {
}
.sectiondetailnopdf #book_list ul {
font-size: 13px;
}
.sectiondetailnopdf #book_list ul li {
}
.sectiondetailnopdf #book_list ul .list_img {
}
.sectiondetailnopdf #book_list ul .list_img img {
box-shadow: 0px 1px 3px 0px #666;
}
.sectiondetailnopdf #book_list ul .list_title{
font-size: 16px;
}
.sectiondetailnopdf #book_list ul .list_title a {
color: #37648C;
}
.sectiondetailnopdf #book_list ul .page,.sectiondetailnopdf #book_list ul .text{ }
.sectiondetailnopdf #book_list ul+ul { border-top:1px dotted #CCC; }
.sectiondetailnopdf #book_data .read_btn {
/*margin:30px 0 0 80px;*/
}
@charset "utf-8";
/* Latest Update
2012.10.31 write */
/* author
keiki ettyuu */
/* ---------- MENU ---------- */
/*
1. gloval setting
2. wrapper setting
3. header setting
4. footer setting
5. section setting
999. clearfix
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. gloval setting */
/*----------------------------*/
html,body{
}
body{
background:#37648C;
}
/*----------------------------*/
/* 2. wrapper setting */
/*----------------------------*/
#wrapper {
}
/*----------------------------*/
/* 3. header setting */
/*----------------------------*/
/*----------------------------*/
/* 4. footer setting */
/*----------------------------*/
/*----------------------------*/
/* 5. section setting */
/*----------------------------*/
.wrapper {
}
#main-ws{
}
a
{
cursor:pointer;
}
article{
}
section{
border: 1px solid #cccccc;
-webkit-box-shadow: 0px 1px 2px 0px #666;
-moz-box-shadow: 0px 1px 2px 0px #666;
box-shadow: 0px 1px 2px 0px #666;
background-color: #FFF;
}
section dl,section dl dt,section dl dd{
}
section dl{
}
section dl dt{
color: #37648C;
font-size: 13px;
font-weight: bolder;
}
section dl dd{
background: url(../../img/login/loginbg.png) 0 0 no-repeat;
/* [disabled]padding:6px; */
}
section dl dd input{
/*background:#00CC66;*/
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
section .p{
}
section .memory{
color: #37648C;
font-size: 12px;
}
section .memory input{
}
section .loginbtn {
}
section a.loginbtn
{
font-size: 14px;
font-weight: bold;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: #23486F; /* Old browsers */
background: -moz-linear-gradient(top, #36638B 0%, #23486F 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#36638B), color-stop(100%,#23486F)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #36638B 0%,#23486F 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #36638B 0%,#23486F 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #36638B 0%,#23486F 100%); /* IE10+ */
background: linear-gradient(to bottom, #36638B 0%,#23486F 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#23486F',GradientType=0 ); /* IE6-9 */
border: 1px solid #0C274D;
color: #ffffff;
}
section a.loginbtn:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
#login .wrapper #main-ws article section a.loginbtn:active {
}
section .loginbtn a:not(:target) {
background-image: url(button_back_off.svg);
}
section .loginbtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.alertTxt,.alertTxtDialog {
color: #e60012;
font-size: 13px;
}
/*----------------------------*/
/* 999. clearfix */
/*----------------------------*/
/*clearfix*/
.fix {
}
.fix:after
{
font-size:1px;
}
.fix {
}
/*------------*/
#login .wrapper {
background-color: #37648C;
}
#login footer {
background-color: #37648C;
}
#login footer .cnt_footer {
color: #FFF;
}
#login article section table tr th {
color: #37648C;
font-size: 14px;
font-weight: bolder;
}
#login .wrapper #main-ws article section table tr td input {
}
#login article section table tr th,#login article section table tr td {
}
#login .wrapper #main-ws article section table {
border-bottom:dotted 1px #BBBBBB;
}
#login footer .border .cnt_footer {
background: url(../../img/login/login_border.jpg) top repeat-x;
opacity:0;
}
#login .wrapper #main-ws article img {
}
#loader {
}
#fade {
background-color: #000;
opacity: 0.3;
}
#login .wrapper #main-ws article ul {
}
#login .wrapper #main-ws article li {
}
/* footer */
footer{
background-color: #EDF2F2;
}
.cnt_footer
{
color: #000;
border-top: solid 1px #CCC;
}
.focus{ color: #969696;}
#user_change footer .border .cnt_footer img { }
#login .wrapper #main-ws article section .error {
font-size: 13px;
color: #FF0000;
font-weight: bolder;
}
/* anonymous */
#anonymous
{
}
#normalUser
{
}
#formlogin,#menu-language
{
opacity: 0;
}
#logologin
{
}
@charset "utf-8";
/* Latest Update
2012.10.31 write */
/* author
keiki ettyuu */
/* ---------- MENU ---------- */
/*
5. .sectionchangepassword setting
*/
/* ---------- MENU ---------- */
/*
html,body {
margin:0;
padding:0;
}*/
/*----------------------------*/
/* 1. .sectionchangepassword setting */
/*----------------------------*/
.sectionchangepassword
{
border:1px solid #86ACC7;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
background-color:#fff;
}
.sectionchangepassword h1
{
font-size:19px;
font-weight:bold;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
}
.sectionchangepassword dl,.sectionchangepassword dl dt,.sectionchangepassword dl dd{
}
.sectionchangepassword dl{
}
.sectionchangepassword dl dt
{
font-size:13px;
}
.sectionchangepassword dl dd{
background:url(../../img/login/loginbg.png) 0 0 no-repeat;
}
.sectionchangepassword dl dd input{
/*background:#00CC66;*/
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
.sectionchangepassword p{
}
.sectionchangepassword .loginbtn {
}
.sectionchangepassword .loginbtn a.change {
}
.sectionchangepassword .loginbtn a.skip {
}
.sectionchangepassword .loginbtn a.cancel {
}
.sectionchangepassword .loginbtn a {
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
border:1px solid #0C274D;
color:#ffffff;
font-family:arial;
font-size:14px;
font-weight:bold;
}
.sectionchangepassword .loginbtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionchangepassword .loginbtn a:active {
}
.sectionchangepassword .loginbtn a:not(:target) {
background-image: url(button_back_off.svg);
}
.sectionchangepassword .loginbtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.alertTxt,.alertTxtDialog
{
font-size:13px;
color:#e60012;
}
\ No newline at end of file
@charset "utf-8";
/* Latest Update
2012.11.5 write */
/* author
koyuki watanabe */
/* ---------- MENU ---------- */
/*
5. .sectionrestore setting
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. .sectionrestore setting */
/*----------------------------*/
.sectionrestore{
border:1px solid #cccccc;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color:#fff;
}
.sectionrestore h1
{
font-size:19px;
font-weight:bold;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
}
.sectionrestore p{
}
.sectionrestore p.message
{
font-size:15px;
font-weight:bold;
color:#333;
}
.sectionrestore p.notice{
color:#333;
}
.sectionrestore .restorebtn {
}
.sectionrestore .restorebtn a.disabled
{
cursor:default;
color:#9e9e9e;
pointer-events: none;
}
.sectionrestore .restorebtn a.disabled:hover
{
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
}
.sectionrestore .restorebtn a.ok {
}
.sectionrestore .restorebtn a.cancel {
}
.sectionrestore .restorebtn a {
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #23486F 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
border:1px solid #0C274D;
color:#ffffff;
font-family:arial;
}
.sectionrestore .restorebtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionrestore .restorebtn a:active {
}
.sectionrestore .restorebtn a:not(:target) {
background-image: url(button_back_off.svg);
}
.sectionrestore .restorebtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
}
\ No newline at end of file
@charset "utf-8";
/* Latest Update
2012.10.31 write */
/* author
keiki ettyuu */
/* ---------- MENU ---------- */
/*
1. gloval setting
2. wrapper setting
3. header setting
4. footer setting
5. .section setting
999. clearfix
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. gloval setting */
/*----------------------------*/
html,body{
}
body{
}
/*----------------------------*/
/* 2. wrapper setting */
/*----------------------------*/
#wrapper {
}
/*----------------------------*/
/* 3. header setting */
/*----------------------------*/
/*----------------------------*/
/* 4. footer setting */
/*----------------------------*/
/*----------------------------*/
/* 5. .section setting */
/*----------------------------*/
#main-ws{
background-color: #EDF2F2;
}
#main-ws article{
}
.sectionSetting{
}
.sectionSetting div#user_info{
}
.sectionSetting div#user_info h2
{
font-size: 24px;
font-weight: bold;
color: #37648C;
border-bottom: 3px solid #37648C;
}
.sectionSetting div#user_info dl{
border-top: 1px dotted #BBBBBB;
font-size: 16px;
}
.sectionSetting div#user_info dl dt, .sectionSetting div#user_info dl dd{
border-bottom: 1px dotted #BBBBBB;
}
.sectionSetting div#user_info dl dt{
background-color: #DCE6E6;
color: #37648C;
font-weight: bolder;
}
.sectionSetting div#user_info dl dd{
}
.sectionSetting div#user_info .passchgbtn {
}
.sectionSetting div#user_info .passchgbtn a
{
font-size: 14px;
font-weight: bold;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
/* [disabled]background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) ); */
background: -moz-linear-gradient( center top,#36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
/* [disabled]text-shadow: 1px 1px 0px #96AABE; */
}
.sectionSetting div#user_info .passchgbtn a:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background: -moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color: #23486F;
}
.sectionSetting div#user_info .passchgbtn a:active {
}
.sectionSetting div#user_info .passchgbtn a:not(:target) {
background-image: url(button_back_off.svg);
background-repeat: repeat-x;
}
.sectionSetting div#user_info .passchgbtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
background-position: bottom;
}
div#user_option{
background-color: #FFF;
}
div#user_option h3{
color: #37648C;
background-color: #EDF2F2;
font-size: 18px;
font-weight: bold;
}
div#user_option ul
{
font-size:13px;
}
div#user_option ul li .choice {
}
div#user_option ul li .notice
{
font-size:11px;
}
div#user_option ul li input {
}
div#user_option ul li input.chkbx {
}
.sectionSetting div#user_option .backupbtn .backup{
}
.sectionSetting div#user_option .logout_backup
{
font-size:13px;
}
.sectionSetting div#user_option input {
}
.sectionSetting div#user_option .backupbtn {
}
.sectionSetting div#user_option .backupbtn a
{
font-size: 14px;
font-weight: bold;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background: -moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
/* [disabled]text-shadow: 1px 1px 0px #a2d613; */
}
.sectionSetting div#user_option .backupbtn a:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background: -moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color: #23486F;
}
.sectionSetting div#user_option .backupbtn a:active {
}
.sectionSetting div#user_option .backupbtn a:not(:target) {
background-image: url(button_back_off.svg);
background-repeat: repeat-x;
}
.sectionSetting div#user_option .backupbtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
background-position: bottom;
background-repeat: repeat-x;
}
.sectionSetting #user_option .savebtn{
border-top: 1px solid #CCC;
}
.sectionSetting #user_option .savebtn a
{
font-size: 14px;
font-weight: bold;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background: -moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color: #23486F;
border: 1px solid #0C274D;
color: #ffffff;
font-family: arial;
/* [disabled]text-shadow: 1px 1px 0px #a2d613; */
}
.sectionSetting #user_option .savebtn a:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background: -moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color: #23486F;
}
.sectionSetting #user_option .savebtn a:active {
}
.sectionSetting #user_option .savebtn a:not(:target) {
background-image: url(button_back_off.svg);
background-repeat: repeat-x;
}
.sectionSetting #user_option .savebtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
background-repeat: repeat-x;
background-position: bottom;
}
.sectionSetting #user_option .savebtn .save{
}
.sectionSetting #user_option .savebtn .default{
}
.sectionSetting .memory
{
font-size:12px;
}
.sectionSetting .memory input{
}
.sectionSetting .loginbtn {
}
.sectionSetting .loginbtn a
{
font-size:14px;
font-weight:bold;
-moz-box-shadow:inset 0px 1px 0px 0px #d6ee23;
-webkit-box-shadow:inset 0px 1px 0px 0px #d6ee23;
box-shadow:inset 0px 1px 0px 0px #d6ee23;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a4d815), color-stop(1, #83c008) );
background:-moz-linear-gradient( center top, #a4d815 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a4d815', endColorstr='#83c008');
background-color:#a4d815;
border:1px solid #83bd07;
color:#ffffff;
font-family:arial;
text-shadow:1px 1px 0px #a2d613;
}
.sectionSetting .loginbtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #83c008), color-stop(1, #a4d815) );
background:-moz-linear-gradient( center top, #83c008 5%, #a4d815 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#83c008', endColorstr='#a4d815');
background-color:#83c008;
}
.sectionSetting .loginbtn a:active {
}
/*----------------------------*/
/* 999. clearfix */
/*----------------------------*/
/*clearfix*/
.fix {
}
.fix:after
{
font-size:1px;
}
.fix {
}
/*------------*/
#user_change article .sectionSetting #user_option ul li {
margin-top: 10px;
margin-bottom: 10px;
}
/* No.4 */
#cboAnimation
{
}
.lblOptPageTransPeriod
{
}
#txtValueAnimation
{
border:solid 1px #222;
}
#slidebar-animation
{
}
#slidebar-container
{
}
\ No newline at end of file
@charset "utf-8";
/*
Latest Update
2014.10.10 write
author
abe
---------- MENU ----------
X. .sectionContentShare setting
---------- MENU ----------
*/
.sectionContentShare{
border:1px solid #cccccc;
-webkit-box-shadow: 0px 1px 3px 0px #666;
-moz-box-shadow: 0px 1px 3px 0px #666;
box-shadow: 0px 1px 3px 0px #666;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-color:#fff;
}
.sectionContentShare h1
{
font-size:19px;
font-weight:bold;
color:#333;
text-shadow: 1px 1px 2px #999;
background-color:#f0f0f0;
-webkit-box-shadow: 0px 1px 3px 0px #999;
-moz-box-shadow: 0px 1px 3px 0px #999;
box-shadow: 0px 1px 3px 0px #999;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
.sectionContentShare .sectionContentShare_input
{
font-size:13px;
}
.sectionContentShare .sectionContentShare_input input
{
}
.sectionContentShare .sectionContentShare_result
{
font-size:13px;
}
.sectionContentShare p{
}
.sectionContentShare p.notice
{
font-size:13px;
}
.sectionContentShare p.message
{
font-size:13px;
/*font-weight:bold;*/
color:#ff0000;
}
.sectionContentShare .message
{
font-size:13px;
/*font-weight:bold;*/
color:#ff0000;
}
.sectionContentShare .sharebtn {
}
.sectionContentShare .sharebtn a.ok {
}
.sectionContentShare .sharebtn a.disabled
{
cursor:default;
color:#9e9e9e;
pointer-events: none;
}
.sectionContentShare .sharebtn a.disabled:hover
{
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
}
.sectionContentShare .sharebtn a.cancel {
}
.sectionContentShare .sharebtn a
{
font-size:14px;
font-weight:bold;
-moz-box-shadow:inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow:inset 0px 1px 0px 0px #86ACC7;
box-shadow:inset 0px 1px 0px 0px #86ACC7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) );
background:-moz-linear-gradient( center top, #36638B 5%, #83c008 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F');
background-color:#23486F;
border:1px solid #0C274D;
color:#ffffff;
font-family:arial;
}
.sectionContentShare .sharebtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) );
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B');
background-color:#36638B;
}
.sectionContentShare .sharebtn a:active {
}
.sectionContentShare .sharebtn a:not(:target) {
background-image: url(button_back_off.svg);
}
.sectionContentShare .sharebtn a:hover:not(:target) {
background-image: url(button_back_on.svg);
}
.sectionContentShare .shareLinkbtn {
}
.sectionContentShare .shareLinkbtn a.disabled
{
}
.sectionContentShare .shareLinkbtn a.disabled:hover
{
}
.sectionContentShare .shareLinkbtn a
{
}
.sectionContentShare .shareLinkbtn a:hover {
}
.sectionContentShare .shareLinkbtn a:active {
}
.sectionContentShare .shareLinkbtn a:not(:target) {
}
.sectionContentShare .shareLinkbtn a:hover:not(:target) {
}
@charset "utf-8";
.tabUnit{
background-color: #37648C;
border-radius: 3px;
box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.2) inset;
}
.tabUnitList{
}
.tab_bg_color{
background-color: #D7E0E8;
border-radius:2px;
box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.2);
}
.tabUnit ul.switchingTab{
}
.tabUnit ul.switchingTab li{
}
.tabUnit ul.switchingTab a{
color: #333333;
text-decoration: none;
font-size: 12px;
}
.tabUnit ul.switchingTab li.colleft a:link {
background: url(../../img/bookshelf/icon_genre_off.png) no-repeat center center;
}
.tabUnit ul.switchingTab li.colright a:link{
background: url(../../img/bookshelf/icon_group_off.png) no-repeat center center;
}
.tabUnit ul.switchingTab li.colleft a:hover {
background-image: url(../../img/bookshelf/icon_genre_on.png);
background-repeat: no-repeat;
}
.tabUnit ul.switchingTab li.colright a:hover{
background-image: url(../../img/bookshelf/icon_group_on.png);
background-repeat: no-repeat;
}
.tabUnit ul.switchingTab li.colright a.current:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(../../img/bookshelf/icon_group_on.png);
}
.tabUnit ul.switchingTab li.colleft a.current:not(:target) {
filter: none;
-ms-filter: none;
background-image: url(../../img/bookshelf/icon_genre_on.png);
}
.tabUnit .tabUnitList ul{
}
.tabUnit .tabUnitList ul li a{
color: #333333;
font-size: 12px;
text-decoration: none;
}
.tabUnit .tabUnitList ul li a:hover{ text-decoration:underline;}
.sankaku_left{ }
.sankaku_right{ }
@charset "utf-8";
/* Latest Update
2012.10.31 write */
/* author
keiki ettyuu */
/* ---------- MENU ---------- */
/*
1. gloval setting
2. wrapper setting
3. header setting
4. footer setting
5. section setting
6. rayermenu setting
7. indexBox setting
8. bookmarkBox setting
9.
10.
11. slider setting
12. transition setting
13. sizing setting
14. toolbar setting
15. glovalbtn setting
999. clearfix
*/
/* ---------- MENU ---------- */
/*----------------------------*/
/* 1. gloval setting */
/*----------------------------*/
/*
html{
}
html,body{
}
body{
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background:#898989;
background-image: url(../../img/viewer/article_bg.png);
}
*/
#viewer {
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background:#898989;
background-image: url(../../img/viewer/article_bg.png);
}
/*----------------------------*/
/* 2. wrapper setting */
/*----------------------------*/
#wrapper {
box-shadow: 2px 2px 8px #000 inset;
border: 1px solid #666;
border-radius: 8px;
}
/*----------------------------*/
/* 3. header setting */
/*----------------------------*/
#header_toolbar{
background-image: url(../../img/viewer/header_bg.jpg);
background-repeat: repeat-x;
box-shadow:0px 2px 10px 2px #333333;
}
.wrapper_header{
}
/*ヘッダー左カラム*/
.hdLcolumn{
}
.hdLcolumn a{
background:url(../../img/viewer/hdicon_01.png) 0 0 no-repeat;
font-size:0;
}
.hdLcolumn .gloupe{
border-left: solid 1px #417298;
border-right: solid 1px #23486F;
}
.hdLcolumn .hgloupe{
border-right: solid 1px #23486F;
}
.hdLcolumn .lgloupe{
border-left: solid 1px #417298;
}
/*アイコン基本設定*/
.hdLcolumn a.home{background-position:0 0;}
.hdLcolumn a.back{background-position:-46px 0;}
.hdLcolumn a.bmList{background-position:-92px 0;}
.hdLcolumn a.bmAdd{background-position:-138px 0;}
.hdLcolumn a.index{background-position:-184px 0;}
.hdLcolumn a.copy{background-position:-230px 0;}
.hdLcolumn a.memoDisplay{background-position:-276px 0;}
.hdLcolumn a.memoAdd{background-position:-322px 0;}
.hdLcolumn a.marking{background-position:-368px 0;}
.hdLcolumn a.markingToolbar{background-position:-414px 0;}
.hdLcolumn a.home_device{background-position:0 0;}
.hdLcolumn a.back_device{background-position:-46px 0;}
.hdLcolumn a.bmList_device{background-position:-92px 0;}
.hdLcolumn a.bmAdd_device{background-position:-138px 0;}
.hdLcolumn a.index_device{background-position:-184px 0;}
.hdLcolumn a.copy_device{background-position:-230px 0;}
.hdLcolumn a.memoDisplay_device{background-position:-276px 0;}
.hdLcolumn a.memoAdd_device{background-position:-322px 0;}
.hdLcolumn a.marking_device{background-position:-368px 0;}
.hdLcolumn a.markingToolbar_device{background-position:-414px 0;}
/*オンマウス時*/
.hdLcolumn a:hover.home{background-position:0 -92px;}
.hdLcolumn a:hover.back{background-position:-46px -92px;}
.hdLcolumn a:hover.bmList{background-position:-92px -92px;}
.hdLcolumn a:hover.bmAdd{background-position:-138px -92px;}
.hdLcolumn a:hover.index{background-position:-184px -92px;}
.hdLcolumn a:hover.copy{background-position:-230px -92px;}
.hdLcolumn a:hover.memoDisplay{background-position:-276px -92px;}
.hdLcolumn a:hover.memoAdd{background-position:-322px -92px;}
.hdLcolumn a:hover.marking{background-position:-368px -92px;}
.hdLcolumn a:hover.markingToolbar{background-position:-414px -92px;}
/*リンクオフ時*/
#viewer .hdLcolumn a.home_off{background-position:0 -46px;cursor:default;}
#viewer .hdLcolumn a.back_off{background-position:-46px -46px;}
#viewer .hdLcolumn a.bmList_off{background-position:-92px -46px;}
#viewer .hdLcolumn a.bmAdd_off{background-position:-138px -46px;}
#viewer .hdLcolumn a.index_off{background-position:-184px -46px;}
#viewer .hdLcolumn a.copy_off{background-position:-230px -46px;}
#viewer .hdLcolumn a.memoDisplay_off{background-position:-276px -46px;}
#viewer .hdLcolumn a.memoAdd_off{background-position:-322px -46px;}
#viewer .hdLcolumn a.marking_off{background-position:-368px -46px;}
#viewer .hdLcolumn a.markingToolbar_off{background-position:-414px -46px;}
/*リンクオフ時*/
#viewer .hdLcolumn a.bmList_hover{background-position:-92px -92px;}
#viewer .hdLcolumn a.bmAdd_hover{background-position:-138px -92px;}
#viewer .hdLcolumn a.index_hover{background-position:-184px -92px;}
#viewer .hdLcolumn a.copy_hover{background-position:-230px -92px;}
#viewer .hdLcolumn a.memoDisplay_hover{background-position:-276px -92px;}
#viewer .hdLcolumn a.memoAdd_hover{background-position:-322px -92px;}
#viewer .hdLcolumn a.marking_hover{background-position:-368px -92px;}
#viewer .hdLcolumn a.markingToolbar_hover{background-position:-414px -92px;}
/*ヘッダー右カラム*/
.hdRcolumn{
}
.hdRcolumn input{
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
background-image: url(../../img/viewer/icon_serch.png) ;
background-repeat: no-repeat;
background-position: 3px 4px;
font-size:14px;
color:#969696;
}
.hdRcolumn .search{
background:url(../../img/viewer/searchbtn.png) 0 0 no-repeat;
font-size:12px;
color:#FFFFFF;
}
.hdRcolumn a:hover.search{
background-position:0 -26px;
}
/*----------------------------*/
/* 4. footer setting */
/*----------------------------*/
.footerTool{
}
.ftRcolumn_2 {
}
.footer{
background-image: url(../../img/viewer/footer_bg.jpg);
background-repeat: repeat-x;
background-position: 0 0;
box-shadow:0px -2px 10px 2px #333333;
}
.ftinner{
}
/*フッター左カラム*/
.ftLcolumn{
}
/*フッター右カラム*/
.ftRcolumn{
}
/*----------------------------*/
/* 5. section setting */
/*----------------------------*/
#viewer article{
background:#999999;
}
#viewer section{
}
/*----------------------------*/
/* 5. markingBox setting */
/*----------------------------*/
aside.markingBox {
-webkit-box-shadow: 0px 0px 3px 1px #666;
-moz-box-shadow: 0px 0px 3px 1px #666;
box-shadow: 0px 0px 3px 1px #666;
}
aside.markingBox .markingBoxHd {
color: #FFFFFF;
font-size: 13px;
background-image: url(../../img/viewer/article_bg.png);
background-repeat: repeat;
background-position: 0 0;
}
aside.markingBox .markingBoxHd .delete{
background:url(../../img/viewer/x.png) 0 0 repeat;
}
aside.markingBox .markingBoxHd .hidden_off{
background:url(../../img/viewer/_.png) 0 0 repeat;
}
aside.markingBox .markingBoxHd .hidden_on{
background:url(../../img/viewer/sikaku.png) 0 0 repeat;
}
aside.markingBox .markingBoxBody_on{
background:#FFFFFF;
border:solid 1px #cfd0d0;
border-top:none;
}
aside.markingBox .markingBoxBody_off{
background:#FFFFFF;
border:solid 1px #cfd0d0;
border-top:none;
}
aside.markingBox ul{
}
aside.markingBox ul li{
}
/*キャンバスエリア*/
aside.markingBox .canvasArea {
background:url(../../img/viewer/canvas.png) 0 0 no-repeat;
border:solid 1px #595757;
}
a.clearbtn{
font-size:13px;
color:#fff;
border:1px solid #0C274D;
border-radius :6px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: #23486F; /* Old browsers */
background: -moz-linear-gradient(top, #36638B 0%, #23486F 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#36638B), color-stop(100%,#23486F)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #36638B 0%,#23486F 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #36638B 0%,#23486F 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #36638B 0%,#23486F 100%); /* IE10+ */
background: linear-gradient(to bottom, #36638B 0%,#23486F 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#23486F',GradientType=0 ); /* IE6-9 */
}
a.savebtn{
font-size:13px;
color:#fff;
border:1px solid #0C274D;
border-radius :6px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: #23486F; /* Old browsers */
background: -moz-linear-gradient(top, #36638B 0%, #23486F 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#36638B), color-stop(100%,#23486F)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #36638B 0%,#23486F 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #36638B 0%,#23486F 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #36638B 0%,#23486F 100%); /* IE10+ */
background: linear-gradient(to bottom, #36638B 0%,#23486F 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#23486F',GradientType=0 ); /* IE6-9 */
}
a.cancelbtn{
font-size:13px;
color:#fff;
border:1px solid #0C274D;
border-radius :6px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: #23486F; /* Old browsers */
background: -moz-linear-gradient(top, #36638B 0%, #23486F 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#36638B), color-stop(100%,#23486F)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #36638B 0%,#23486F 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #36638B 0%,#23486F 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #36638B 0%,#23486F 100%); /* IE10+ */
background: linear-gradient(to bottom, #36638B 0%,#23486F 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#23486F',GradientType=0 ); /* IE6-9 */
}
a:hover.clearbtn{
background: #36638B; /* Old browsers */
background: -moz-linear-gradient(top, #23486F 0%, #36638B 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#23486F), color-stop(100%,#36638B)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #23486F 0%,#36638B 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #23486F 0%,#36638B 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #23486F 0%,#36638B 100%); /* IE10+ */
background: linear-gradient(to bottom, #23486F 0%,#36638B 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23486F', endColorstr='#36638B',GradientType=0 ); /* IE6-9 */
}
a:hover.savebtn{
background: #36638B; /* Old browsers */
background: -moz-linear-gradient(top, #23486F 0%, #36638B 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#23486F), color-stop(100%,#36638B)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #23486F 0%,#36638B 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #23486F 0%,#36638B 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #23486F 0%,#36638B 100%); /* IE10+ */
background: linear-gradient(to bottom, #23486F 0%,#36638B 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23486F', endColorstr='#36638B',GradientType=0 ); /* IE6-9 */
}
a:hover.cancelbtn{
background: #36638B; /* Old browsers */
background: -moz-linear-gradient(top, #23486F 0%, #36638B 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#23486F), color-stop(100%,#36638B)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #23486F 0%,#36638B 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #23486F 0%,#36638B 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #23486F 0%,#36638B 100%); /* IE10+ */
background: linear-gradient(to bottom, #23486F 0%,#36638B 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23486F', endColorstr='#36638B',GradientType=0 ); /* IE6-9 */
}
/*----------------------------*/
/* 6. rayermenu setting */
/*----------------------------*/
.rayermenu1{
background:url(../../img/viewer/alpha_w70.png) 0 0 repeat;
-webkit-border-radius:5px 5px 5px 5px;
-moz-border-radius:5px 5px 5px 5px;
border-radius:5px 5px 5px 5px;
-webkit-box-shadow: 0px 0px 3px 1px #999;
-moz-box-shadow: 0px 0px 3px 1px #999;
box-shadow: 0px 0px 3px 1px #999;
}
.rayermenu1 ul{
}
.rayermenu1 ul li{
font-size:12px;
}
.rayermenu1 ul li a {
color:#000;
}
.rayermenu1 ul li a:hover {
background:url(../../img/viewer/alpha_b20.png) 0 0 repeat;
}
.rayermenu1 ul li img {
}
.rayermenu1 ul li a span {
}
.sizeXL {}
.sizeL {}
.sizeM {}
.sizeS {}
.rayermenu1 .popcolumnR {
}
.rayermenu1 .popcolumnR .colorchip{
background:#FFFFFF;
}
.rayermenu1 .popcolumnR .colorchip a{
border:solid 1px #d3d5d6;
}
.rayermenu1 .popcolumnR .colorchip a:hover{
/*
border-width:2px;
border-color:#e6e6e6;*/
}
.rayermenu1 .popcolumnR .colorchip .color01{
background:#ff0000;
}
.rayermenu1 .popcolumnR .colorchip .color02{
background:#ffff00;
}
.rayermenu1 .popcolumnR .colorchip .color03{
background:#00ff00;
}
.rayermenu1 .popcolumnR .colorchip .color04{
background:#00ffff;
}
.rayermenu1 .popcolumnR .colorchip .color05{
background:#0000ff;
}
.rayermenu1 .popcolumnR .colorchip .color06{
background:#ff00ff;
}
.rayermenu1 .popcolumnR .colorchip .color07{
background:#ffffff;
}
.rayermenu1 .popcolumnR .colorchip .color08{
background:#000000;
}
.rayermenu1 div .canvasArea_s{
background:url(../../img/viewer/canvas_s.png) 0 0 repeat;
border:solid 1px #595959;
}
.rayermenu1 div .cancelbtn{
font-size:13px;
color:#fff;
border:1px solid #0C274D;
border-radius :6px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: #23486F; /* Old browsers */
background: -moz-linear-gradient(top, #36638B 0%, #23486F 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#36638B), color-stop(100%,#23486F)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #36638B 0%,#23486F 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #36638B 0%,#23486F 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #36638B 0%,#23486F 100%); /* IE10+ */
background: linear-gradient(to bottom, #36638B 0%,#23486F 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#23486F',GradientType=0 ); /* IE6-9 */
}
.rayermenu1 div a:hover.cancelbtn{
cursor: pointer;
font-size:13px;
color:#fff;
background: #36638B; /* Old browsers */
background: -moz-linear-gradient(top, #23486F 0%, #36638B 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#23486F), color-stop(100%,#36638B)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #23486F 0%,#36638B 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #23486F 0%,#36638B 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #23486F 0%,#36638B 100%); /* IE10+ */
background: linear-gradient(to bottom, #23486F 0%,#36638B 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#36638B',GradientType=0 ); /* IE6-9 */
}
.rayermenu1 div .okbtn{
}
/*レイヤーメニュー2*/
/*レイヤーメニュー3*/
.rayermenu3{
background:url(../../img/viewer/alpha_w70.png) 0 0 repeat;
-webkit-border-radius:5px 5px 5px 5px;
-moz-border-radius:5px 5px 5px 5px;
border-radius:5px 5px 5px 5px;
-webkit-box-shadow: 0px 0px 3px 1px #999;
-moz-box-shadow: 0px 0px 3px 1px #999;
box-shadow: 0px 0px 3px 1px #999;
}
.rayermenu3 ul{
}
.rayermenu3 ul li{
font-size:12px;
}
.rayermenu3 ul li a {
color:#000;
}
.rayermenu3 ul li a:hover {
background:url(../../img/viewer/alpha_b20.png) 0 0 repeat;
}
.rayermenu3 ul li img {
}
.rayermenu3 ul li a span {
}
.sizeXL {}
.sizeL {}
.sizeM {}
.sizeS {}
.rayermenu3 .popcolumnR {
}
.rayermenu3 div .canvasArea_l{
background:url(../../img/viewer/canvas_l.png) 0 0 repeat;
border:solid 1px #595959;
}
.rayermenu3 div .cancelbtn{
font-size:13px;
color:#fff;
border:1px solid #0C274D;
border-radius :6px;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7;
box-shadow: inset 0px 1px 0px 0px #86ACC7;
background: #23486F; /* Old browsers */
background: -moz-linear-gradient(top, #36638B 0%, #23486F 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#36638B), color-stop(100%,#23486F)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #36638B 0%,#23486F 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #36638B 0%,#23486F 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #36638B 0%,#23486F 100%); /* IE10+ */
background: linear-gradient(to bottom, #36638B 0%,#23486F 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#23486F',GradientType=0 ); /* IE6-9 */
}
.rayermenu3 div a:hover.cancelbtn{
font-size:13px;
color:#fff;
background: #36638B; /* Old browsers */
background: -moz-linear-gradient(top, #23486F 0%, #36638B 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#23486F), color-stop(100%,#36638B)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #23486F 0%,#36638B 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #23486F 0%,#36638B 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #23486F 0%,#36638B 100%); /* IE10+ */
background: linear-gradient(to bottom, #23486F 0%,#36638B 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36638B', endColorstr='#36638B',GradientType=0 ); /* IE6-9 */
}
.rayermenu3 div .okbtn{
}
/*----------------------------*/
/* 7. indexBox setting */
/*----------------------------*/
aside.indexBox {
-webkit-box-shadow: 0px 0px 3px 1px #666;
-moz-box-shadow: 0px 0px 3px 1px #666;
box-shadow: 0px 0px 3px 1px #666;
}
aside.indexBox .indexBoxHd {
background-image: url(../../img/viewer/article_bg.png);
background-repeat: repeat;
background-position: 0 0;
color:#FFFFFF;
font-size:13px;
}
aside.indexBox .indexBoxHd .delete{
background:url(../../img/viewer/x.png) 0 0 no-repeat;
}
aside.indexBox .indexBoxHd .hidden_off{
background:url(../../img/viewer/_.png) 0 0 repeat;
}
aside.indexBox .indexBoxHd .hidden_on{
background:url(../../img/viewer/sikaku.png) 0 0 repeat;
}
aside.indexBox .indexBoxBody_on{
background:#FFFFFF;
border:solid 1px #cfd0d0;
border-top:none;
}
aside.indexBox .indexBoxBody_off{
background:#FFFFFF;
border:solid 1px #cfd0d0;
border-top:none;
}
aside.indexBox #branch1 {
}
.indexBox ul{ }
.indexBox ul li{}
.indexBox ul li a{
color:#333333;
font-size:12px;
text-decoration:none;
}
.indexBox ul li a:hover{color:#0099CC;text-decoration:underline;}
/*----------------------------*/
/* 8. bookmarkBox setting */
/*----------------------------*/
aside.bookmarkBox {
-webkit-box-shadow: 0px 0px 3px 1px #666;
-moz-box-shadow: 0px 0px 3px 1px #666;
box-shadow: 0px 0px 3px 1px #666;
}
aside.bookmarkBox .bookmarkBoxHd {
background-image: url(../../img/viewer/article_bg.png);
background-repeat: repeat;
background-position: 0 0;
color:#FFFFFF;
font-size:13px;
}
aside.bookmarkBox .bookmarkBoxHd .delete{
background:url(../../img/viewer/x.png) 0 0 no-repeat;
}
aside.bookmarkBox .bookmarkBoxHd .hidden_off{
background:url(../../img/viewer/_.png) 0 0 repeat;
}
aside.bookmarkBox .bookmarkBoxHd .hidden_on{
background:url(../../img/viewer/sikaku.png) 0 0 repeat;
}
aside.bookmarkBox .bookmarkBoxBody_on{
background:#FFFFFF;
border:solid 1px #cfd0d0;
border-top:none;
}
aside.bookmarkBox .bookmarkBoxBody_off{
background:#FFFFFF;
border:solid 1px #cfd0d0;
border-top:none;
}
aside.bookmarkBox li{
border-bottom:solid 1px #444;
font-size:11px;
}
aside.bookmarkBox label{
border-bottom:solid 1px #444;
font-size:11px;
}
aside.bookmarkBox div{
border-bottom:solid 1px #444;
font-size:11px;
}
aside.bookmarkBox li .imgbox{
border:solid 1px #444;
background:#ccc;
}
aside.bookmarkBox li .mdltext{
}
aside.bookmarkBox .last{
border:none;
}
/*----------------------------*/
/* 9. Memo setting */
/*----------------------------*/
aside.MemoIndexBox a:hover{
cursor: pointer;
}
aside.MemoIndexBox {
-webkit-box-shadow: 0px 0px 3px 1px #666;
-moz-box-shadow: 0px 0px 3px 1px #666;
box-shadow: 0px 0px 3px 1px #666;
}
aside.MemoIndexBox .indexBoxHd {
background-image: url(../../img/viewer/article_bg.png);
background-repeat: repeat;
background-position: 0 0;
color:#FFFFFF;
font-size:13px;
}
aside.MemoIndexBox .indexBoxHd .delete{
background:url('../../img/viewer/x.png') 0 0 repeat;
}
aside.MemoIndexBox .indexBoxHd .hidden_off{
background:url('../../img/viewer/_.png') 0 0 repeat;
}
aside.MemoIndexBox .indexBoxHd .hidden_on{
background:url('../../img/viewer/sikaku.png') 0 0 repeat;
}
aside.MemoIndexBox .indexBoxBody_on{
background:#FFFFFF;
border:solid 1px #cfd0d0;
border-top:none;
}
aside.MemoIndexBox .indexBoxBody_off{
background:#FFFFFF;
border:solid 1px #cfd0d0;
border-top:none;
}
.indexBox ul li a:hover{color:#0099CC;text-decoration:underline;}
.parentMemoDialogImportantCss{
border: 0 none !important;
background: none !important;
}
.memoDialogImportantCss{
border: 0 none !important;
background: none !important;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
/*----------------------------*/
/* 10.Image preview setting */
/*----------------------------*/
#slideWrapper
{
}
.gallery-image
{
box-shadow: 0px 2px 8px 0px #999;
}
.slideshow-control
{
}
.gallery-thumb
{
}
#selector-img
{
}
#control-prev
{
}
#control-next
{
}
.main-control
{
opacity: 0.65;
background-color: #AAAAAA;
}
#main-control-prev
{
background-color: gray;
background-image: url('../../img/main_previous.png');
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
#main-control-next
{
background-color: gray;
background-image: url('../../img/main_next.png');
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
.slideshow-control img
{
}
#control-prev img
{
}
#main-img
{
background-color: black;
}
.mainThumbnail
{
}
#wrapper .thumbnail
{
box-shadow: 0px 2px 8px 0px #ccc;
border:3px solid #fff;
background-color: black;
}
.first
{
}
/*----------------------------*/
/* 11. slider setting */
/*----------------------------*/
.slider {
background-image: url(../../img/viewer/sliderbg_01.png);
background-repeat: no-repeat;
background-position: 0 4px;
}
.slider .sld01{
background: url(../../img/viewer/sliderbg_02.png) 0 0 no-repeat;
}
.slider .sld01 span{
font-size: 11px;
}
.slider .sld01 span input{
font-size: 11px;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
}
.slider .sld01 .move{
}
.slider .sld02{
}
/*----------------------------*/
/* 12. transition setting */
/*----------------------------*/
.transition {
/*background: url(../../img/viewer/transitionbtn_bg.png) 0 0 no-repeat;*/
}
/*ボタン設定*/
.transition a{
font-size: 0;
background-image: url(../../img/viewer/transitionbtn_01.png);
background-repeat: no-repeat;
background-position: 0 0;
}
.transition .begin {
background-position: 0 0;
}
.transition a:hover.begin {
background-position: 0 -34px;
}
.transition .begin_off {
background-position: 0 -68px;cursor:default;
}
.transition .prev {
background-position: -62px 0;
}
.transition a:hover.prev {
background-position: -62px -34px;
}
.transition .prev_off {
background-position: -62px -68px;
}
.transition .next {
background-position: -122px 0;
}
.transition a:hover.next {
background-position: -122px -34px;
}
.transition .next_off {
background-position: -122px -68px;
}
.transition .last {
background-position: -182px 0;
}
.transition a:hover.last {
background-position: -182px -34px;
}
.transition .last_off {
background-position: -182px -68px;
}
.transition .begin_device{background-position: 0 0;}
.transition .prev_device { background-position: -62px 0;}
.transition .next_device {background-position: -122px 0;}
.transition .last_device {background-position: -182px 0;}
/*----------------------------*/
/* 13. sizing setting */
/*----------------------------*/
.sizing {
/*background: url(../../img/viewer/sizingbtn_bg.png) 0 0 no-repeat;*/
}
/*ボタン設定*/
.sizing a{
font-size: 0;
background-image: url(../../img/viewer/sizingbtn_01.png);
background-repeat: no-repeat;
background-position: 0 0;
}
.sizing .expansion {
background-position: 0 0;
}
.sizing a:hover.expansion {
background-position: 0 -34px;
}
.sizing .expansion_off {
background-position: 0 -68px;cursor:default;
}
.sizing .fit {
background-position: -62px 0;
}
.sizing a:hover.fit {
background-position: -62px -34px;
}
.sizing .fit_off {
background-position: -62px -68px;
}
.sizing .reduction {
background-position: -122px 0;
}
.sizing a:hover.reduction {
background-position: -122px -34px;
}
.sizing .reduction_off {
background-position: -122px -68px;
}
.sizing .expansion_device {background-position:0 0;}
.sizing .fit_device {background-position: -62px 0;}
.sizing .reduction_device {background-position: -122px 0;}
/*----------------------------*/
/* 14. toolbar setting */
/*----------------------------*/
.toolbar {
font-size: 0;
background-image: url(../../img/viewer/toolbarbtn_01.png);
background-repeat: no-repeat;
background-position: 0 0;
}
.toolbar_device {
font-size: 0;
background-image: url(../../img/viewer/toolbarbtn_01.png);
background-repeat: no-repeat;
background-position: 0 0;
}
.toolbar_off {
background: url(../../img/viewer/toolbarbtn_01.png) 0 -78px no-repeat;
}
a:hover.toolbar {
background-position: 0 -39px;
}
.toolbar_close {
background-image: url(../../img/viewer/toolbarbtn_02.png);
background-repeat: no-repeat;
background-position: 0 0;
}
.toolbar_close_device {
background-image: url(../../img/viewer/toolbarbtn_02.png);
background-repeat: no-repeat;
background-position: 0 0;
}
a.toolbar_close:hover {
background-position: 0 -39px;
}
/*----------------------------*/
/* 15. glovalbtn setting */
/*----------------------------*/
.gNextbtn {
font-size: 0;
background-image: url(../../img/viewer/gmovebtn_01.png);
background-repeat: no-repeat;
background-position: -50px 0;
}
.gBackbtn {
font-size: 0;
background-image: url(../../img/viewer/gmovebtn_01.png);
background-repeat: no-repeat;
background-position: 0 0;
}
/*----------------------------*/
/* 16. Other Setting */
/*----------------------------*/
/* slider bar [start]*/
.ui-slider-horizontal .ui-state-default {
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
}
div .ui-slider-range, .ui-widget-header, .ui-slider-range-max {
}
.ui-slider .ui-slider-handle {}
.ui-slider-horizontal .ui-slider-handle {}
.ui-widget-content {}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
border: none !important;
background: url(../../img/viewer/sliderbtn_02.png) !important;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: none !important; background: url(../../img/viewer/sliderbtn_02.png) !important;}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: none !important; background: url(../../img/viewer/sliderbtn_02.png) !important;}
#slider_page{}
/* slider bar [end]*/
/* loading image [start]*/
#divImageLoading{
background-color:#ccc;
border-radius: 10px;
opacity: 0.7;
}
#divImageLoading img{
}
/* loading image [end]*/
/* navigate button [start]*/
#button_pre_canvas{
opacity: 0;
}
#button_next_canvas{
opacity: 0;
}
.nav {
cursor: pointer;
opacity: 0.4;
}
/* navigate button [end]*/
/* dialog [start]*/
.web_dialog{
background-color: black;
font-family: Verdana;
font-size: 10pt;
}
.web_dialog_overlay{
background: #000000;
opacity: .15;
filter: alpha(opacity=15);
-moz-opacity: .15;
}
.align_right{
}
.content_image_preview{
}
.popuptext_web_dialog {
background-color: #FFFFFF;
border-style:solid;
border-color:#ccd;
font-family: Verdana;
font-size: 10pt;
border-radius: 10px;
/*word-break: break-all;*/
/*word-wrap: break-word;*/
-moz-box-shadow:-3px 3px 3px #777;
-webkit-box-shadow:-3px 3px 3px #777;
box-shadow : -3px 3px 3px #777
}
.popuptext_arrow {
border-style: solid;
border-width: 12px 12px 12px 12px;
border-color: transparent transparent transparent rgb(204, 204, 221) !important;
}
/* HOVER STYLES */
.pop-up-memo {
background: #eeeeee;
color: #000000;
border: 1px solid #1a1a1a;
font-size: 90%;
}
.pop-up-memo a:hover{
cursor: pointer;
text-decoration: underline;
}
.check_marking{
border-radius: 5px;
}
/* dialog [end]*/
/* dialog confirm bgm [start]*/
#bgmConfirm
{
}
.sectionDeleteConfirm .deletebtn a.ok_audio {
cursor: pointer;
}
/* dialog confirm bgm [end]*/
/* Marking tool bar [start]*/
.pen_selected{
background:url(../../img/viewer/1_on.png) 0 0 repeat-x;
}
.pen_hover{
background:url(../../img/viewer/1_off.png) 0 0 repeat-x;
}
.pen_hover:hover{
background:url(../../img/viewer/1_on.png) 0 0 repeat-x;
}
.maker_selected{
background:url(../../img/viewer/3_on.png) 0 0 repeat-x;
}
.maker_hover{
background:url(../../img/viewer/3_off.png) 0 0 repeat-x;
}
.maker_hover:hover{
background:url(../../img/viewer/3_on.png) 0 0 repeat-x;
}
.eraser_selected{
background:url(../../img/viewer/5_on.png) 0 0 repeat-x;
}
.eraser_hover{
background:url(../../img/viewer/5_off.png) 0 0 repeat-x;
}
.eraser_hover:hover{
background:url(../../img/viewer/5_on.png) 0 0 repeat-x;
}
.pen_option_selected{
background:url(../../img/viewer/2_on.png) 0 0 repeat-x;
}
.pen_option_hover{
background:url(../../img/viewer/2_off.png) 0 0 repeat-x;
}
.pen_option_hover:hover{
background:url(../../img/viewer/2_on.png) 0 0 repeat-x;
}
.maker_option_selected{
background:url(../../img/viewer/4_on.png) 0 0 repeat-x;
}
.maker_option_hover{
background:url(../../img/viewer/4_off.png) 0 0 repeat-x;
}
.maker_option_hover:hover{
background:url(../../img/viewer/4_on.png) 0 0 repeat-x;
}
.eraser_option_selected{
background:url(../../img/viewer/6_on.png) 0 0 repeat-x;
}
.eraser_option_hover{
background:url(../../img/viewer/6_off.png) 0 0 repeat-x;
}
.eraser_option_hover:hover{
background:url(../../img/viewer/6_on.png) 0 0 repeat-x;
}
.content_image_preview{
}
.toolbar_icon_on{
background-color: #123456;
}
/* Marking tool bar [end]*/
/* Box Copy Text dialog [start]*/
#boxCopyText{
}
#boxCopyText h1{
}
#boxCopyText ul{
}
/* Box Copy Text dialog [end]*/
/* Box Copy Text dialog [start]*/
#boxAddMemo{
}
#boxAddMemo ul{
}
#boxAddMemo ul a{
}
/* Box Copy Text dialog [end]*/
/* Box Memo dialog [start]*/
#divDialogMemo{
}
/* Box Memo dialog [end]*/
/* Box music dialog [start]*/
#dialog-contenttype-music{
}
/* Box music dialog [end]*/
/* Box marking dialog [start]*/
#dlgMarking{
}
#dlgMarking h1 a.hidden_off{
}
#dlgMarking h1 a.hidden_on{
}
/* Box marking dialog [end]*/
/* Box eraser dialog [start]*/
#dlgGomu div:first-child{
}
#dlgGomu ul{
}
#dlgGomu input[type='radio']{
}
/* Box eraser dialog [end]*/
/* Box maker dialog [start]*/
#dlgMaker input[type='radio']{
}
/* Box maker dialog [end]*/
/* Box pen dialog [start]*/
#dlgPen input[type='radio']{
}
/* Box pen dialog [end]*/
/* footer dialog [start]*/
#footer_toolbar_2 a{
}
/* footer dialog [end]*/
/* common dialog [end]*/
#dialog h1{
background:url(../../img/viewer/article_bg.png) 0 0 repeat;
}
#dialog h1 img#btnClose{
}
/* common dialog [end]*/
/* Alert Content Dialog [Start] */
.sectionLimitAccess {
border:1px solid #cccccc !important;
-webkit-border-radius:10px 10px 10px 10px !important;
-moz-border-radius:10px 10px 10px 10px !important;
border-radius:10px 10px 10px 10px !important;
-webkit-box-shadow: 0px 1px 3px 0px #666 !important;
-moz-box-shadow: 0px 1px 3px 0px #666 !important;
box-shadow: 0px 1px 3px 0px #666 !important;
font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif !important;
background-color: #ffffff !important;
}
.sectionLimitAccess h1{
text-align:center !important;
font-weight:bold !important;
letter-spacing: 2px !important;
color:#333 !important;
text-shadow: 1px 1px 2px #999 !important;
background:#f0f0f0 !important;
-webkit-box-shadow: 0px 1px 3px 0px #999 !important;
-moz-box-shadow: 0px 1px 3px 0px #999 !important;
box-shadow: 0px 1px 3px 0px #999 !important;
border-radius: 10px 10px 0px 0px !important;
}
.sectionLimitAccess p{
}
.sectionLimitAccess p.message{
font-size:13px !important;
font-weight:bold !important;
color:#333 !important;
}
.sectionLimitAccess p.message .error
{
color:#f00 !important;
font-weight:normal !important;
}
.sectionLimitAccess p.message .text
{
font-size:15px !important;
}
.sectionLimitAccess p.message input
{
background-color:#fff !important;
}
.sectionLimitAccess .deletebtn {
}
.sectionLimitAccess .deletebtn a
{
cursor:pointer !important;
-moz-box-shadow: inset 0px 1px 0px 0px #86ACC7 !important;
-webkit-box-shadow: inset 0px 1px 0px 0px #86ACC7 !important;
box-shadow: inset 0px 1px 0px 0px #86ACC7 !important;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #36638B), color-stop(1, #23486F) ) !important;
background: -moz-linear-gradient( center top, #36638B 5%, #23486F 100% ) !important;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#36638B', endColorstr='#23486F') !important;
background-color: #23486F !important;
-moz-border-radius: 6px !important;
-webkit-border-radius: 6px !important;
border-radius: 6px !important;
border: 1px solid #0C274D !important;
color: #ffffff !important;
font-family: arial !important;
font-size: 15px !important;
font-weight: bold !important;
text-decoration: none !important;
}
.sectionLimitAccess .deletebtn a:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #23486F), color-stop(1, #36638B) ) !important;
background:-moz-linear-gradient( center top, #23486F 5%, #36638B 100% ) !important;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#23486F', endColorstr='#36638B') !important;
background-color:#36638B !important;
}
.sectionLimitAccess .deletebtn a:active {
}
.sectionLimitAccess .deletebtn a:not(:target) {
filter: none !important;
-ms-filter: none !important;
}
/* Alert Content Dialog [End] */
/*----------------------------*/
/* 999. clearfix */
/*----------------------------*/
/*clearfix*/
.fix {
}
.fix:after {
font-size:1px;
}
.fix {
}
/*------------*/
.markingToolbar_off_hover
{
background-position: -414px -92px;
}
#control_screen_2{
background-color: #898989;
opacity: 0.75;
}
ul#divSearchResult li:hover{ background:#f4f4f4;cursor:pointer;}
ul#divListBookmark li:hover{background:#f4f4f4;cursor:pointer;}
#divListIndex span:hover{color: red; cursor: pointer}
span.error{
color: red;
}
span.no-item{
color:#333333;
font-size:12px;
cursor:default;
text-decoration:none;
}
.dialog-content-music{
background: url(../../img/iPad_music.png) center center no-repeat;
background-color: white;
}
.imagePreview-one{
background-color: black;
}
.picker-choose-on{
border:1px solid #e6e6e6 !important;
}
.picker-choose-off{
border:1px solid #d3d5d6 !important;
}
#close_toolbar .closebtn {
background: url(../../img/login/close.png) 0 0 no-repeat;
}
......@@ -302,7 +302,7 @@
<!-- slider [start] -->
<div class="slider fix">
<div id="divTxtSlider" class="sld01">
<span><input id="txtSlider" type="text" size="2" maxlength="3"/><label id="lblSlider"> </label></span>
<span><input id="txtSlider" type="text" size="2" maxlength="4"/><label id="lblSlider"> </label></span>
</div>
<a id="control_process" class="sld02"><div id="slider_page" > </div></a>
</div>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -4,7 +4,7 @@ var CONTENTVIEW_CALLAPI = {};
//Call API
CONTENTVIEW_CALLAPI.abapi = function(name, param, method, callback) {
AVWEB.avwCmsApiSync(ClientData.userInfo_accountPath(), name, method, param, callback, null);
AVWEB.avwCmsApiSync(ClientData.userInfo_accountPath(), name, method, param, callback, null);
};
/* get Json stored content info */
......@@ -25,48 +25,48 @@ CONTENTVIEW_CALLAPI.getJsonContentInfo = function( doneFunc ) {
CONTENTVIEW_CALLAPI.getJsonContentInfoDone = function(doneFunc){
var ajax1 = CONTENTVIEW_CALLAPI.webGetContentDataWhen();
var ajax2 = CONTENTVIEW_CALLAPI.getSearchDataFromJsonWhen();
var ajax3 = CONTENTVIEW_CALLAPI.getJsonDataPageTitleWhen();
var ajax4 = CONTENTVIEW_CALLAPI.getJsonDataType4When();
var ajax5 = CONTENTVIEW_CALLAPI.getJsonDataType5When();
var ajax6 = CONTENTVIEW_CALLAPI.getDataJsonFileWhen();
var ajax7 = CONTENTVIEW_CALLAPI.webGetContentPageSizeWhen();
$.when(
ajax1,ajax2,ajax3,ajax4,ajax5,ajax6,ajax7
).done(function(data1, data2, data3, data4, data5, data6, data7) {
//console.log("done:data1:" + data1);
//console.log("done:data2:" + data2);
//console.log("done:data3:" + data3);
//console.log("done:data4:" + data4);
//console.log("done:data5:" + data5);
//console.log("done:data6:" + data6);
//console.log("done:data7:" + data7);
if(data1){
CONTENTVIEW_CALLAPI.webGetContentDataDone(data1[0]);
}
if(data2){
CONTENTVIEW_CALLAPI.getSearchDataFromJsonDone(data2[0]);
}
if(data3){
CONTENTVIEW_CALLAPI.getJsonDataPageTitleDone(data3[0]);
}
if(data4){
CONTENTVIEW_CALLAPI.getJsonDataType4Done(data4[0]);
}
if(data5){
CONTENTVIEW_CALLAPI.getJsonDataType5Done(data5[0]);
}
if(data6){
CONTENTVIEW_CALLAPI.getDataJsonFileDone(data6[0]);
}
if(data7){
CONTENTVIEW_CALLAPI.webGetContentPageSizeDone(data7[0]);
}
if(doneFunc){
doneFunc();
}
});
var ajax1 = CONTENTVIEW_CALLAPI.webGetContentDataWhen();
var ajax2 = CONTENTVIEW_CALLAPI.getSearchDataFromJsonWhen();
var ajax3 = CONTENTVIEW_CALLAPI.getJsonDataPageTitleWhen();
var ajax4 = CONTENTVIEW_CALLAPI.getJsonDataType4When();
var ajax5 = CONTENTVIEW_CALLAPI.getJsonDataType5When();
var ajax6 = CONTENTVIEW_CALLAPI.getDataJsonFileWhen();
var ajax7 = CONTENTVIEW_CALLAPI.webGetContentPageSizeWhen();
$.when(
ajax1,ajax2,ajax3,ajax4,ajax5,ajax6,ajax7
).done(function(data1, data2, data3, data4, data5, data6, data7) {
//console.log("done:data1:" + data1);
//console.log("done:data2:" + data2);
//console.log("done:data3:" + data3);
//console.log("done:data4:" + data4);
//console.log("done:data5:" + data5);
//console.log("done:data6:" + data6);
//console.log("done:data7:" + data7);
if(data1){
CONTENTVIEW_CALLAPI.webGetContentDataDone(data1[0]);
}
if(data2){
CONTENTVIEW_CALLAPI.getSearchDataFromJsonDone(data2[0]);
}
if(data3){
CONTENTVIEW_CALLAPI.getJsonDataPageTitleDone(data3[0]);
}
if(data4){
CONTENTVIEW_CALLAPI.getJsonDataType4Done(data4[0]);
}
if(data5){
CONTENTVIEW_CALLAPI.getJsonDataType5Done(data5[0]);
}
if(data6){
CONTENTVIEW_CALLAPI.getDataJsonFileDone(data6[0]);
}
if(data7){
CONTENTVIEW_CALLAPI.webGetContentPageSizeDone(data7[0]);
}
if(doneFunc){
doneFunc();
}
});
};
//END TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
......@@ -75,51 +75,51 @@ CONTENTVIEW_CALLAPI.getJsonContentInfoDone = function(doneFunc){
CONTENTVIEW_CALLAPI.webGetPageImageContentSize = function() {
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
isStreaming: ClientData.isStreamingMode()
};
AVWEB.avwCmsApi(ClientData.userInfo_accountPath(),
"webContentPageSize",
"GET",
{ contentId: CONTENTVIEW_GENERAL.contentID, sid: CONTENTVIEW.getSessionId() },
function (data) {
CONTENTVIEW_GENERAL.widthContentImage = data.width;
CONTENTVIEW_GENERAL.heightContentImage = data.height;
},
null);
AVWEB.avwCmsApi(ClientData.userInfo_accountPath(),
"webContentPageSize",
"GET",
{ contentId: CONTENTVIEW_GENERAL.contentID, sid: CONTENTVIEW.getSessionId() },
function (data) {
CONTENTVIEW_GENERAL.widthContentImage = data.width;
CONTENTVIEW_GENERAL.heightContentImage = data.height;
},
null);
};
CONTENTVIEW_CALLAPI.webGetContentPageSizeWhen = function(){
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 6,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 6,
isStreaming: ClientData.isStreamingMode()
};
return AVWEB._callCmsApiWhen(
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
);
};
CONTENTVIEW_CALLAPI.webGetContentPageSizeDone = function(data){
if( data.contentData.pageInfoData.pagesInfo ){
$.each(data.contentData.pageInfoData.pagesInfo, function(i, n){
CONTENTVIEW_GENERAL.contentPageSizeArr.push(n);
});
//Get Page size of firstPage
CONTENTVIEW_CALLAPI.getPageSizeByPageNo(1);
} else {
CONTENTVIEW.showErrorScreen();
}
if( data.contentData.pageInfoData.pagesInfo ){
$.each(data.contentData.pageInfoData.pagesInfo, function(i, n){
CONTENTVIEW_GENERAL.contentPageSizeArr.push(n);
});
//Get Page size of firstPage
CONTENTVIEW_CALLAPI.getPageSizeByPageNo(1);
} else {
CONTENTVIEW.showErrorScreen();
}
};
//Get Pagesize by pageNo
......@@ -128,8 +128,8 @@ CONTENTVIEW_CALLAPI.getPageSizeByPageNo = function(pageNo){
var page = CONTENTVIEW_GENERAL.contentPageSizeArr[i];
if(page.pageNo == pageNo){
CONTENTVIEW_GENERAL.widthContentImage = page.pageWidth;
CONTENTVIEW_GENERAL.heightContentImage = page.pageHeight;
CONTENTVIEW_GENERAL.widthContentImage = page.pageWidth;
CONTENTVIEW_GENERAL.heightContentImage = page.pageHeight;
}
}
};
......@@ -137,53 +137,53 @@ CONTENTVIEW_CALLAPI.getPageSizeByPageNo = function(pageNo){
CONTENTVIEW_CALLAPI.webGetContentDataWhen = function() {
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 1,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 1,
isStreaming: ClientData.isStreamingMode()
};
return AVWEB._callCmsApiWhen(
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
);
};
CONTENTVIEW_CALLAPI.webGetContentDataDone = function(data) {
CONTENTVIEW_GENERAL.totalPage = data.contentData.allPageNum;
CONTENTVIEW_GENERAL.totalPage = data.contentData.allPageNum;
};
/* get Json stored page title */
CONTENTVIEW_CALLAPI.getJsonDataPageTitleWhen = function() {
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 3,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 3,
isStreaming: ClientData.isStreamingMode()
};
return AVWEB._callCmsApiWhen(
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
);
};
CONTENTVIEW_CALLAPI.getJsonDataPageTitleDone = function(data) {
CONTENTVIEW_GENERAL.dataPageTitle = [];
CONTENTVIEW_GENERAL.dataPageTitle = [];
for (var nIndex = 0; nIndex < CONTENTVIEW_GENERAL.totalPage; nIndex++) {
CONTENTVIEW_GENERAL.dataPageTitle.push("");
CONTENTVIEW_GENERAL.dataPageTitle.push("");
}
if (data.contentData) {
if (data.contentData.titleInfo) {
CONTENTVIEW_GENERAL.dataPageTitle = data.contentData.titleInfo;
CONTENTVIEW_GENERAL.dataPageTitle = data.contentData.titleInfo;
}
}
};
......@@ -192,63 +192,63 @@ CONTENTVIEW_CALLAPI.getJsonDataPageTitleDone = function(data) {
CONTENTVIEW_CALLAPI.getJsonDataType4When = function() {
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 4,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 4,
isStreaming: ClientData.isStreamingMode()
};
return AVWEB._callCmsApiWhen(
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
);
};
CONTENTVIEW_CALLAPI.getJsonDataType4Done = function(data) {
CONTENTVIEW_GENERAL.dataJsonType4 = data.contentData.linkData;
CONTENTVIEW_GENERAL.dataJsonType4 = data.contentData.linkData;
};
/* get Json webGetContent5 */
CONTENTVIEW_CALLAPI.getJsonDataType5When = function() {
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 5,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 5,
isStreaming: ClientData.isStreamingMode()
};
return AVWEB._callCmsApiWhen(
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
);
};
CONTENTVIEW_CALLAPI.getJsonDataType5Done = function(data) {
CONTENTVIEW_GENERAL.dataJsonType5 = data.contentData.outlineData;
CONTENTVIEW_GENERAL.dataJsonType5 = data.contentData.outlineData;
};
/* read file Json -> get page objects */
CONTENTVIEW_CALLAPI.getDataJsonFileWhen = function() {
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 2,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
getType: 2,
isStreaming: ClientData.isStreamingMode()
};
return AVWEB._callCmsApiWhen(
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
ClientData.userInfo_accountPath(),
"webGetContent",
"GET",
params
);
};
......@@ -259,7 +259,7 @@ CONTENTVIEW_CALLAPI.getDataJsonFileDone = function(data) {
CONTENTVIEW_GENERAL.pageObjectsData = [];
if (JsonFile.vertical) {
if (JsonFile.vertical.pages) {
CONTENTVIEW_GENERAL.pageObjectsData = JsonFile.vertical.pages;
CONTENTVIEW_GENERAL.pageObjectsData = JsonFile.vertical.pages;
//Start Function : No.9 - Editor : Long - Date : 08/16/2013 - Summary :
if(data.contentDataSub != null && data.contentDataSub.length > 0){
......@@ -273,7 +273,7 @@ CONTENTVIEW_CALLAPI.getDataJsonFileDone = function(data) {
}
else if (JsonFile.horizontal) {
if (JsonFile.horizontal.pages) {
CONTENTVIEW_GENERAL.pageObjectsData = JsonFile.horizontal.pages;
CONTENTVIEW_GENERAL.pageObjectsData = JsonFile.horizontal.pages;
//Start Function : No.9 - Editor : Long - Date : 08/16/2013 - Summary :
if(data.contentDataSub != null && data.contentDataSub.length > 0){
for(var i = 0; i < CONTENTVIEW_GENERAL.pageObjectsData.length; i++){
......@@ -286,7 +286,7 @@ CONTENTVIEW_CALLAPI.getDataJsonFileDone = function(data) {
}
//Start : Function : No.12 - Editor : Long - Date: 08/27/2013 - Summary : Get Page Object for content type none
else{
CONTENTVIEW_GENERAL.pageObjectsData = JsonFile.content.pages;
CONTENTVIEW_GENERAL.pageObjectsData = JsonFile.content.pages;
if(data.contentDataSub != null && data.contentDataSub.length > 0){
for(var i = 0; i < CONTENTVIEW_GENERAL.pageObjectsData.length; i++){
......@@ -321,52 +321,52 @@ CONTENTVIEW_CALLAPI.loadDataBookmark = function(lstPageNo) {
if (CONTENTVIEW_GENERAL.isSendingData == true) {
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
pageNos: lstPageNo[0],
thumbnailFlg: 1,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
pageNos: lstPageNo[0],
thumbnailFlg: 1,
isStreaming: ClientData.isStreamingMode()
};
AVWEB.avwCmsApi(ClientData.userInfo_accountPath(),
"webContentPage",
"GET",
params,
function (data) {
CONTENTVIEW_GETDATA.getDataLoaded(data.pages);
//Resize Image
var imgTemp = new Image();
$('#img_bookmark_' + data.pages[0].pageNo).attr('src', COMMON.formatStringBase64(data.pages[0].pageThumbnail));
imgTemp.onload = function () {
if (imgTemp.width > imgTemp.height) {
$("img.imgbox").attr('height', '');
$("img.imgbox").removeAttr('height');
$("img.imgbox").attr('width', '43');
}
else {
$("img.imgbox").attr('width', '');
$("img.imgbox").removeAttr('width');
$("img.imgbox").attr('height', '43');
}
};
imgTemp.src = COMMON.formatStringBase64(data.pages[0].pageThumbnail);
lstPageNo = jQuery.grep(lstPageNo, function (value) {
return value != lstPageNo[0];
});
if (lstPageNo.length > 0) {
CONTENTVIEW_CALLAPI.loadDataBookmark(lstPageNo);
} else {
CONTENTVIEW_GENERAL.isSendingData = false;
}
},
null);
AVWEB.avwCmsApi(ClientData.userInfo_accountPath(),
"webContentPage",
"GET",
params,
function (data) {
CONTENTVIEW_GETDATA.getDataLoaded(data.pages);
//Resize Image
var imgTemp = new Image();
$('#img_bookmark_' + data.pages[0].pageNo).attr('src', COMMON.formatStringBase64(data.pages[0].pageThumbnail));
imgTemp.onload = function () {
if (imgTemp.width > imgTemp.height) {
$("img.imgbox").attr('height', '');
$("img.imgbox").removeAttr('height');
$("img.imgbox").attr('width', '43');
}
else {
$("img.imgbox").attr('width', '');
$("img.imgbox").removeAttr('width');
$("img.imgbox").attr('height', '43');
}
};
imgTemp.src = COMMON.formatStringBase64(data.pages[0].pageThumbnail);
lstPageNo = jQuery.grep(lstPageNo, function (value) {
return value != lstPageNo[0];
});
if (lstPageNo.length > 0) {
CONTENTVIEW_CALLAPI.loadDataBookmark(lstPageNo);
} else {
CONTENTVIEW_GENERAL.isSendingData = false;
}
},
null);
}
};
......@@ -384,76 +384,76 @@ CONTENTVIEW_CALLAPI.getSearchDataFromJsonWhen = function() {
}
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
thumbnailFlg: 0,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
thumbnailFlg: 0,
isStreaming: ClientData.isStreamingMode()
};
return AVWEB._callCmsApiWhen(
ClientData.userInfo_accountPath(),
"webContentPage",
"GET",
params
ClientData.userInfo_accountPath(),
"webContentPage",
"GET",
params
);
};
CONTENTVIEW_CALLAPI.getSearchDataFromJsonDone = function(data) {
CONTENTVIEW_GENERAL.contentName = data.contentTitle;
CONTENTVIEW_GENERAL.dataWebContentPage = data;
CONTENTVIEW_GENERAL.contentName = data.contentTitle;
CONTENTVIEW_GENERAL.dataWebContentPage = data;
};
CONTENTVIEW_CALLAPI.loadDataSearch = function(lstPageNo) {
if (CONTENTVIEW_GENERAL.isSendingData == true) {
var params = {
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
pageNos: lstPageNo[0],
thumbnailFlg: 1,
isStreaming: ClientData.isStreamingMode()
contentId: CONTENTVIEW_GENERAL.contentID,
sid: CONTENTVIEW.getSessionId(),
pageNos: lstPageNo[0],
thumbnailFlg: 1,
isStreaming: ClientData.isStreamingMode()
};
AVWEB.avwCmsApi(ClientData.userInfo_accountPath(),
"webContentPage",
"GET",
params,
function (data) {
CONTENTVIEW_GETDATA.getDataLoaded(data.pages);
//Resize Image
var imgTemp = new Image();
$('#img_search_' + data.pages[0].pageNo).attr('src', COMMON.formatStringBase64(data.pages[0].pageThumbnail));
imgTemp.onload = function () {
if (imgTemp.width > imgTemp.height) {
$("img.imgbox").attr('height', '');
$("img.imgbox").removeAttr('height');
$("img.imgbox").attr('width', '43');
}
else {
$("img.imgbox").attr('width', '');
$("img.imgbox").removeAttr('width');
$("img.imgbox").attr('height', '43');
}
};
imgTemp.src = COMMON.formatStringBase64(data.pages[0].pageThumbnail);
lstPageNo = jQuery.grep(lstPageNo, function (value) {
return value != lstPageNo[0];
});
if (lstPageNo.length > 0) {
CONTENTVIEW_CALLAPI.loadDataSearch(lstPageNo);
} else {
CONTENTVIEW_GENERAL.isSendingData = false;
}
},
null);
AVWEB.avwCmsApi(ClientData.userInfo_accountPath(),
"webContentPage",
"GET",
params,
function (data) {
CONTENTVIEW_GETDATA.getDataLoaded(data.pages);
//Resize Image
var imgTemp = new Image();
$('#img_search_' + data.pages[0].pageNo).attr('src', COMMON.formatStringBase64(data.pages[0].pageThumbnail));
imgTemp.onload = function () {
if (imgTemp.width > imgTemp.height) {
$("img.imgbox").attr('height', '');
$("img.imgbox").removeAttr('height');
$("img.imgbox").attr('width', '43');
}
else {
$("img.imgbox").attr('width', '');
$("img.imgbox").removeAttr('width');
$("img.imgbox").attr('height', '43');
}
};
imgTemp.src = COMMON.formatStringBase64(data.pages[0].pageThumbnail);
lstPageNo = jQuery.grep(lstPageNo, function (value) {
return value != lstPageNo[0];
});
if (lstPageNo.length > 0) {
CONTENTVIEW_CALLAPI.loadDataSearch(lstPageNo);
} else {
CONTENTVIEW_GENERAL.isSendingData = false;
}
},
null);
}
};
......
......@@ -14,11 +14,11 @@ CONTENTVIEW_EVENTS.handleAddMemo = function(event) {
//Start Function : No.4
if(CONTENTVIEW_GETDATA.getContent().hasNextPage()){
CONTENTVIEW.drawMemoOnScreen(1);
CONTENTVIEW.drawMemoOnScreen(1);
}
if(CONTENTVIEW_GETDATA.getContent().hasPreviousPage()){
CONTENTVIEW.drawMemoOnScreen(2);
CONTENTVIEW.drawMemoOnScreen(2);
}
//End Function : No.4
......@@ -46,11 +46,11 @@ CONTENTVIEW_EVENTS.handleAddMemo = function(event) {
CONTENTVIEW.drawMemoOnScreen();
//Start Function : No.4
if(CONTENTVIEW_GETDATA.getContent().hasNextPage()){
CONTENTVIEW.drawMemoOnScreen(1);
CONTENTVIEW.drawMemoOnScreen(1);
}
if(CONTENTVIEW_GETDATA.getContent().hasPreviousPage()){
CONTENTVIEW.drawMemoOnScreen(2);
CONTENTVIEW.drawMemoOnScreen(2);
}
//End Function : No.4
//change class
......@@ -83,11 +83,11 @@ CONTENTVIEW_EVENTS.imgmarking_click = function() {
//Start Function : No.4
if(CONTENTVIEW_GETDATA.getContent().hasNextPage()){
CONTENTVIEW.drawCanvas(1);
CONTENTVIEW.drawCanvas(1);
}
if(CONTENTVIEW_GETDATA.getContent().hasPreviousPage()){
CONTENTVIEW.drawCanvas(2);
CONTENTVIEW.drawCanvas(2);
}
//End Function : No.4
......@@ -109,11 +109,11 @@ CONTENTVIEW_EVENTS.imgmarking_click = function() {
//Start Function : No.4
if(CONTENTVIEW_GETDATA.getContent().hasNextPage()){
CONTENTVIEW.drawCanvas(1);
CONTENTVIEW.drawCanvas(1);
}
if(CONTENTVIEW_GETDATA.getContent().hasPreviousPage()){
CONTENTVIEW.drawCanvas(2);
CONTENTVIEW.drawCanvas(2);
}
}
//End Function : No.4
......@@ -127,7 +127,7 @@ CONTENTVIEW_EVENTS.clickBookmark = function() {
var targetPageIndex = $(this).attr('id');
if(targetPageIndex != CONTENTVIEW_GETDATA.getPageIndex()){
CONTENTVIEW.changePage(targetPageIndex);
CONTENTVIEW.changePage(targetPageIndex);
}
/* close popup */
......@@ -179,7 +179,7 @@ CONTENTVIEW_EVENTS.showListBookMark = function(e) {
/*event click show dialog index*/
CONTENTVIEW_EVENTS.showListPageIndex = function(e) {
CONTENTVIEW_GENERAL.isDisplayListIndex = true;
CONTENTVIEW_GENERAL.isDisplayListIndex = true;
var array = [e.pageX, e.pageY];
CONTENTVIEW_GETDATA.getPageIndexJson(array);
......@@ -193,7 +193,7 @@ CONTENTVIEW_EVENTS.showListPageIndex = function(e) {
/* event close list bookmark box */
CONTENTVIEW_EVENTS.closeIndexBox = function() {
CONTENTVIEW_GENERAL.isDisplayListIndex = false;
CONTENTVIEW_GENERAL.isDisplayListIndex = false;
$("#divListIndex").hide();
$('#boxIndex').css('display', 'none');
......@@ -224,9 +224,9 @@ CONTENTVIEW_EVENTS.listIndex_Callback = function(selectedNode) {
CONTENTVIEW_EVENTS.showCopyText = function(e) {
/* display dialog overlay */
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid()) {
CONTENTVIEW.copyText();
CONTENTVIEW.copyText();
} else {
CONTENTVIEW_GENERAL.isDisplayCopyText = true;
CONTENTVIEW_GENERAL.isDisplayCopyText = true;
//change class
$('#copytext').removeClass();
$('#copytext').addClass('copy_hover');
......@@ -239,7 +239,7 @@ CONTENTVIEW_EVENTS.showCopyText = function(e) {
/* event close copy text box */
CONTENTVIEW_EVENTS.closeCopyTextBox = function() {
CONTENTVIEW_GENERAL.isDisplayCopyText = false;
CONTENTVIEW_GENERAL.isDisplayCopyText = false;
$("#divCopyText").hide();
$('#boxCopyText').css('display', 'none');
......@@ -260,7 +260,7 @@ CONTENTVIEW_EVENTS.closeCopyTextBox = function() {
CONTENTVIEW_EVENTS.showListSearchResult = function() {
$('#txtSearch').keydown(function (e) {
if (e.keyCode == 13) {
CONTENTVIEW.searchHandle();
CONTENTVIEW.searchHandle();
/* display dialog overlay */
//$("#overlay").show();
......@@ -271,7 +271,7 @@ CONTENTVIEW_EVENTS.showListSearchResult = function() {
/* event close searching result box */
CONTENTVIEW_EVENTS.closeSearchingBox = function() {
CONTENTVIEW_GENERAL.isSendingData = false;
CONTENTVIEW_GENERAL.isSendingData = false;
$("#divSearchResult").hide();
$('#boxSearching').css('display', 'none');
......@@ -293,7 +293,7 @@ CONTENTVIEW_EVENTS.nextPage_click = function() {
if (CONTENTVIEW_GETDATA.getContent().hasNextPage()) {
var pageNo = CONTENTVIEW_GETDATA.getPageIndex() + 1;
var pageNo = CONTENTVIEW_GETDATA.getPageIndex() + 1;
COMMON.SetPageLog( CONTENTVIEW_GENERAL.contentID, pageNo);
......@@ -319,7 +319,7 @@ CONTENTVIEW_EVENTS.prevPage_click = function() {
if (CONTENTVIEW_GETDATA.getContent().hasPreviousPage()) {
var pageNo = CONTENTVIEW_GETDATA.getPageIndex() - 1;
var pageNo = CONTENTVIEW_GETDATA.getPageIndex() - 1;
COMMON.SetPageLog( CONTENTVIEW_GENERAL.contentID, pageNo);
......@@ -344,7 +344,7 @@ CONTENTVIEW_EVENTS.firstPage_click = function() {
if (CONTENTVIEW_GETDATA.getContent().pageIndex != 0) {
if(CONTENTVIEW_GETDATA.getContent().pageIndex == 1){
CONTENTVIEW_EVENTS.prevPage_click();
CONTENTVIEW_EVENTS.prevPage_click();
}
else{
......@@ -369,26 +369,26 @@ CONTENTVIEW_EVENTS.firstPage_click = function() {
function (data) {
CONTENTVIEW_GENERAL.pageImages = data;
/* get page Objects */
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, 0);
CONTENTVIEW_GETDATA.getContent().setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.pageImages).setPageObjects(CONTENTVIEW_GENERAL.pageObjects);
/* get page Objects */
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, 0);
CONTENTVIEW_GETDATA.getContent().setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.pageImages).setPageObjects(CONTENTVIEW_GENERAL.pageObjects);
$('#divImageLoading').css('display', 'none');
$('#divImageLoading').css('display', 'none');
CONTENTVIEW.checkDisableButtonZoom();
var tran = new CONTENTVIEW_CREATEOBJECT.Transition();
tran.flipToPage(0);
CONTENTVIEW.checkDisableButtonZoom();
var tran = new CONTENTVIEW_CREATEOBJECT.Transition();
tran.flipToPage(0);
},
function (xmlHttpRequest, txtStatus, errorThrown) {
CONTENTVIEW.showErrorScreen();
}
},
function (xmlHttpRequest, txtStatus, errorThrown) {
CONTENTVIEW.showErrorScreen();
}
);
}
//START : TRB00032 - Editor : Long - Date: 09/10/2013 - Summary : type none process
else if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, 0);
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, 0);
CONTENTVIEW_GETDATA.getContent().setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.pageImages).setPageObjects(CONTENTVIEW_GENERAL.pageObjects);
$('#divImageLoading').css('display', 'none');
......@@ -411,7 +411,7 @@ CONTENTVIEW_EVENTS.lastPage_click = function() {
if (CONTENTVIEW_GETDATA.getContent().pageIndex != (CONTENTVIEW_GENERAL.totalPage - 1)) {
if(CONTENTVIEW_GETDATA.getContent().pageIndex == CONTENTVIEW_GENERAL.totalPage - 2){
CONTENTVIEW_EVENTS.nextPage_click();
CONTENTVIEW_EVENTS.nextPage_click();
}
else{
......@@ -443,20 +443,20 @@ CONTENTVIEW_EVENTS.lastPage_click = function() {
CONTENTVIEW_GETDATA.getContent().setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.pageImages).setPageObjects(CONTENTVIEW_GENERAL.pageObjects);
$('#divImageLoading').css('display', 'none');
CONTENTVIEW.checkDisableButtonZoom();
var tran = new CONTENTVIEW_CREATEOBJECT.Transition();
tran.flipToPage(CONTENTVIEW_GENERAL.totalPage - 1);
CONTENTVIEW.checkDisableButtonZoom();
var tran = new CONTENTVIEW_CREATEOBJECT.Transition();
tran.flipToPage(CONTENTVIEW_GENERAL.totalPage - 1);
},
function (xmlHttpRequest, txtStatus, errorThrown) {
CONTENTVIEW.showErrorScreen();
}
},
function (xmlHttpRequest, txtStatus, errorThrown) {
CONTENTVIEW.showErrorScreen();
}
);
}
//START : TRB00032 - Editor : Long - Date: 09/10/2013 - Summary : type none process
else if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, CONTENTVIEW_GENERAL.totalPage - 1);
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, CONTENTVIEW_GENERAL.totalPage - 1);
CONTENTVIEW_GETDATA.getContent().setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.pageImages).setPageObjects(CONTENTVIEW_GENERAL.pageObjects);
$('#divImageLoading').css('display', 'none');
......@@ -502,11 +502,11 @@ CONTENTVIEW_EVENTS.createLockLayout = function(opt){
$(document).keydown(function (e) {
/* set fag true when click ctrl */
if (e.ctrlKey) {
CONTENTVIEW_GENERAL.ctrlMode = true;
CONTENTVIEW_GENERAL.ctrlMode = true;
}
if(e.altKey){
CONTENTVIEW_EVENTS.altMode = true;
CONTENTVIEW_EVENTS.altMode = true;
}
/* set hot key */
......@@ -519,14 +519,14 @@ $(document).keydown(function (e) {
case COMMON.ShortKeys.MovePrevious: /* move prev */
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
if (CONTENTVIEW_GETDATA.getContent().hasPreviousPage()) {
CONTENTVIEW_EVENTS.prevPage_click();
CONTENTVIEW_EVENTS.prevPage_click();
}
}
break;
case COMMON.ShortKeys.MoveNext: /* move next */
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
if (CONTENTVIEW_GETDATA.getContent().hasNextPage()) {
CONTENTVIEW_EVENTS.nextPage_click();
CONTENTVIEW_EVENTS.nextPage_click();
}
}
......@@ -536,21 +536,21 @@ $(document).keydown(function (e) {
case COMMON.ShortKeys.ZoomIn: /* zoomIn */
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW.zoomIn();
CONTENTVIEW.zoomIn();
}
break;
case COMMON.ShortKeys.ZoomOut: /* zoomOut */
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW.zoomOut();
CONTENTVIEW.zoomOut();
}
break;
case COMMON.ShortKeys.ZoomFit: /* screenFit*/
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW.screenFit();
CONTENTVIEW.screenFit();
}
break;
......@@ -558,14 +558,14 @@ $(document).keydown(function (e) {
case COMMON.ShortKeys.ShowHideToolbar: /* handle toolbar */
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW.handleDisplayToolbar();
CONTENTVIEW.handleDisplayToolbar();
}
else{
if(CONTENTVIEW.isZoomingContent){
CONTENTVIEW.originalScreenForNotPdfType();
CONTENTVIEW.originalScreenForNotPdfType();
}
else{
CONTENTVIEW.fullScreenForNotPdfType();
CONTENTVIEW.fullScreenForNotPdfType();
}
}
......@@ -573,7 +573,7 @@ $(document).keydown(function (e) {
case COMMON.ShortKeys.ShowHideMarking: /* hide marking */
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW_EVENTS.imgmarking_click();
CONTENTVIEW_EVENTS.imgmarking_click();
}
break;
......@@ -591,20 +591,20 @@ $(document).keydown(function (e) {
case COMMON.ShortKeys.ZoomInAlt: /* zoomIn */
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW.zoomIn();
CONTENTVIEW.zoomIn();
}
break;
case COMMON.ShortKeys.ZoomOutAlt: /* zoomOut */
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW.zoomOut();
CONTENTVIEW.zoomOut();
}
break;
case COMMON.ShortKeys.ZoominAlt_Firefox: /* zoomIn */
if(CONTENTVIEW_GENERAL.avwUserEnvObj.browser == 'firefox'){
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW.zoomIn();
CONTENTVIEW.zoomIn();
}
}
break;
......@@ -612,7 +612,7 @@ $(document).keydown(function (e) {
if(CONTENTVIEW_GENERAL.avwUserEnvObj.browser == 'firefox'){
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF || CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_Image
|| CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW.zoomOut();
CONTENTVIEW.zoomOut();
}
}
break;
......@@ -624,7 +624,7 @@ $(document).keydown(function (e) {
/* handle keydown */
$(document).keyup(function (e) {
CONTENTVIEW_GENERAL.ctrlMode = false;
CONTENTVIEW_GENERAL.ctrlMode = false;
CONTENTVIEW_EVENTS.altMode = false;
});
//END TRB00049 - Editor: Long - Date: 09/26/2013 - Summary : Add short key alt
......@@ -686,9 +686,9 @@ CONTENTVIEW_EVENTS.update3DImagesArr = function(){
//END TRB - Editor : Long -Date : 10/01/2013 - Summary : Re Assign sid for image 3d
CONTENTVIEW_EVENTS.onUnlock = function() {
CONTENTVIEW.removeObject();
CONTENTVIEW_EVENTS.update3DImagesArr();
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, 0);
CONTENTVIEW.removeObject();
CONTENTVIEW_EVENTS.update3DImagesArr();
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, 0);
/* handle play BGM of content jump */
for (var nIndex = 0; nIndex < CONTENTVIEW_GENERAL.pageObjects.length; nIndex++) {
if (CONTENTVIEW_GENERAL.pageObjects[nIndex].mediaType == '3' && CONTENTVIEW_GENERAL.pageObjects[nIndex].playType == '1') {
......@@ -698,7 +698,7 @@ CONTENTVIEW_EVENTS.onUnlock = function() {
document.getElementById("play_audio_1").play();
CONTENTVIEW_GENERAL.isPlayBGMUnlock = true;
} else {
CONTENTVIEW_CREATEOBJECT.createAudio(CONTENTVIEW_GENERAL.pageObjects[nIndex].audioFile, CONTENTVIEW_GENERAL.pageObjects[nIndex].playType);
CONTENTVIEW_CREATEOBJECT.createAudio(CONTENTVIEW_GENERAL.pageObjects[nIndex].audioFile, CONTENTVIEW_GENERAL.pageObjects[nIndex].playType);
}
}
}
......@@ -710,12 +710,12 @@ CONTENTVIEW_EVENTS.onUnlock = function() {
CONTENTVIEW_CREATEOBJECT.createPageBGM();
//END : TRB00028 - Editor: Long - Date: 09/10/2013 - Summary : Fix For Page BGM
if(CONTENTVIEW_GETDATA.getPageIndex() < CONTENTVIEW_GENERAL.totalPage - 1){
CONTENTVIEW_GETDATA.getNextPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, CONTENTVIEW_GETDATA.getPageIndex() + 1);
CONTENTVIEW_GETDATA.getNextPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, CONTENTVIEW_GETDATA.getPageIndex() + 1);
CONTENTVIEW_GETDATA.renderNextPage();
}
if(CONTENTVIEW_GETDATA.getPageIndex() > 0){
CONTENTVIEW_GETDATA.getPrevPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, CONTENTVIEW_GETDATA.getPageIndex() - 1);
CONTENTVIEW_GETDATA.getPrevPageObjectsByPageIndex(CONTENTVIEW_GENERAL.pageObjectsData, CONTENTVIEW_GETDATA.getPageIndex() - 1);
CONTENTVIEW_GETDATA.renderPrevPage();
}
......@@ -730,7 +730,7 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
return;
}
else{
CONTENTVIEW.cancelClick = false;
CONTENTVIEW.cancelClick = false;
}
if (!CONTENTVIEW.cancelClick) {
......@@ -746,7 +746,7 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
if (ClientData.IsAddingMemo() == true) {
if (!ClientData.memo_copyText()) {
CONTENTVIEW_MEMO.AddMemo(CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), event.pageX, event.pageY, function () {
CONTENTVIEW_MEMO.AddMemo(CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), event.pageX, event.pageY, function () {
//set flag change memo
ClientData.isChangedMemo(true);
ClientData.IsAddingMemo(false);
......@@ -760,7 +760,7 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
});
} else {
if (CONTENTVIEW_GENERAL.typeSelectMemo == 1) { /* add new */
CONTENTVIEW_MEMO.AddMemo(CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_GENERAL.posXPopupMemo, CONTENTVIEW_GENERAL.posYPopupMemo, function () {
CONTENTVIEW_MEMO.AddMemo(CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_GENERAL.posXPopupMemo, CONTENTVIEW_GENERAL.posYPopupMemo, function () {
//set flag change memo
ClientData.isChangedMemo(true);
ClientData.IsAddingMemo(false);
......@@ -774,7 +774,7 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
});
} else if (CONTENTVIEW_GENERAL.typeSelectMemo == 2) { /* copy */
CONTENTVIEW_MEMO.CopyMemo(ClientData.memo_copyText(), CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_GENERAL.posXPopupMemo, CONTENTVIEW_GENERAL.posYPopupMemo, function () {
CONTENTVIEW_MEMO.CopyMemo(ClientData.memo_copyText(), CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_GENERAL.posXPopupMemo, CONTENTVIEW_GENERAL.posYPopupMemo, function () {
//set flag change memo
ClientData.isChangedMemo(true);
ClientData.IsAddingMemo(false);
......@@ -795,18 +795,18 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
var isClickMemo = false;
if (CONTENTVIEW_GENERAL.isOpenPopUpText == true) {
CONTENTVIEW_GENERAL.isOpenPopUpText = false;
CONTENTVIEW_POPUPTEXT.ClosePopupText();
CONTENTVIEW_GENERAL.isOpenPopUpText = false;
CONTENTVIEW_POPUPTEXT.ClosePopupText();
}
if (CONTENTVIEW_GENERAL.isOpenPopUpMemo == true) {
CONTENTVIEW_GENERAL.isOpenPopUpMemo = false;
CONTENTVIEW_GENERAL.isOpenPopUpMemo = false;
$("#pop_up_memo").hide();
}
/* click memo edit */
if (ClientData.IsDisplayMemo() == true) {
CONTENTVIEW_GETDATA.getAllMemoOfPage();
CONTENTVIEW_GETDATA.getAllMemoOfPage();
/* check exist object memo in mouse position */
for (var nIndex = 0; nIndex < CONTENTVIEW_CREATEOBJECT.memoObjects.length; nIndex++) {
var hitPageObjMemo = CONTENTVIEW_CREATEOBJECT.memoObjects[nIndex];
......@@ -815,7 +815,7 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
//hitPageObjMemo.action();
/* save object memo */
CONTENTVIEW_GENERAL.objEditMemo = hitPageObjMemo;
CONTENTVIEW_GENERAL.objEditMemo = hitPageObjMemo;
var posMemoX = event.pageX;
var posMemoY = event.pageY;
......@@ -854,9 +854,9 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
}
if (hitPageObj) {
if(!CONTENTVIEW.is3DObject(hitPageObj)){
if(((CONTENTVIEW_GENERAL.positonX != CONTENTVIEW_GENERAL.newpositionX) || (CONTENTVIEW_GENERAL.positonY != CONTENTVIEW_GENERAL.newpositionY)) && (CONTENTVIEW_GENERAL.positonX != undefined)) {
CONTENTVIEW_GENERAL.number = 0;
}
if(((CONTENTVIEW_GENERAL.positonX != CONTENTVIEW_GENERAL.newpositionX) || (CONTENTVIEW_GENERAL.positonY != CONTENTVIEW_GENERAL.newpositionY)) && (CONTENTVIEW_GENERAL.positonX != undefined)) {
CONTENTVIEW_GENERAL.number = 0;
}
hitPageObj.action();
}
else{
......@@ -886,29 +886,29 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
if(!CONTENTVIEW_EVENTS.isPreventClick){
//START TRB00097
if(CONTENTVIEW.userScale == 1){
CONTENTVIEW_EVENTS.prevPage_click();
CONTENTVIEW_EVENTS.prevPage_click();
}
//END TRB00097
}
else{
CONTENTVIEW_EVENTS.isPreventClick = false;
CONTENTVIEW_EVENTS.isPreventClick = false;
}
} else if (event.pageX > (cwMain - 300) && event.pageX < cwMain) {
if(!CONTENTVIEW_EVENTS.isPreventClick){
//START TRB00097
if(CONTENTVIEW.userScale == 1){
CONTENTVIEW_EVENTS.nextPage_click();
CONTENTVIEW_EVENTS.nextPage_click();
}
//END TRB00097
}
else{
CONTENTVIEW_EVENTS.isPreventClick = false;
CONTENTVIEW_EVENTS.isPreventClick = false;
}
}
if(!CONTENTVIEW_EVENTS.isPreventClick){
//その他のエリア
//console.log("click!!");
//その他のエリア
//console.log("click!!");
}
}
......@@ -922,20 +922,20 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
//Start : TRB00005, TRB00006 - Editor : Long - Date: 08/28/2013 - Summary : Prevent click when transit
if (event.pageX > 0 && event.pageX < 300) {
if(!CONTENTVIEW_EVENTS.isPreventClick){
CONTENTVIEW_EVENTS.prevPage_click();
CONTENTVIEW_EVENTS.prevPage_click();
//CONTENTVIEW_EVENTS.isPreventClick = true;
}
else{
CONTENTVIEW_EVENTS.isPreventClick = false;
CONTENTVIEW_EVENTS.isPreventClick = false;
}
} else if (event.pageX > (cwMain - 300) && event.pageX < cwMain) {
if(!CONTENTVIEW_EVENTS.isPreventClick){
CONTENTVIEW_EVENTS.nextPage_click();
CONTENTVIEW_EVENTS.nextPage_click();
}
else{
CONTENTVIEW_EVENTS.isPreventClick = false;
CONTENTVIEW_EVENTS.isPreventClick = false;
}
}
//End : TRB00005, TRB00006 - Editor : Long - Date: 08/28/2013 - Summary : Prevent click when transit
......@@ -960,7 +960,7 @@ CONTENTVIEW_EVENTS.mouseWheel_CanvasMain = function(event, detail) {
}
if(CONTENTVIEW_GENERAL.isLoadingObject){
CONTENTVIEW.moveFlag = false;
CONTENTVIEW.moveFlag = false;
}
/* base image move when userScale over 1 */
......@@ -999,7 +999,7 @@ CONTENTVIEW_EVENTS.mouseMove_CanvasMain = function(event) {
}
if(CONTENTVIEW_GENERAL.isLoadingObject){
CONTENTVIEW.moveFlag = false;
CONTENTVIEW.moveFlag = false;
}
//End Function : No.20 - Editor : Long
......@@ -1032,12 +1032,12 @@ CONTENTVIEW_EVENTS.mouseMove_CanvasMain = function(event) {
// store current mouse point
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isIos() == false && CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid() == false) {
CONTENTVIEW_GENERAL.px = event.pageX;
CONTENTVIEW_GENERAL.py = event.pageY;
CONTENTVIEW_GENERAL.px = event.pageX;
CONTENTVIEW_GENERAL.py = event.pageY;
} else {
//event.preventDefault();
CONTENTVIEW_GENERAL.px = event.targetTouches[0].pageX;
CONTENTVIEW_GENERAL.py = event.targetTouches[0].pageY;
CONTENTVIEW_GENERAL.px = event.targetTouches[0].pageX;
CONTENTVIEW_GENERAL.py = event.targetTouches[0].pageY;
}
// redraw
......@@ -1051,10 +1051,10 @@ CONTENTVIEW_EVENTS.mouseMove_CanvasMain = function(event) {
else if(CONTENTVIEW.moveFlag && CONTENTVIEW.userScale == 1){
//Prevent 3d animate when moving
CONTENTVIEW_EVENTS.isPageTransition = true;
CONTENTVIEW_EVENTS.isPageTransition = true;
//Start : TRB00005, TRB00006 - Editor : Long - Date: 08/28/2013 - Summary : Prevent click when transit
CONTENTVIEW_EVENTS.isPreventClick = true;
CONTENTVIEW_EVENTS.isPreventClick = true;
//End : TRB00005, TRB00006 - Editor : Long - Date: 08/28/2013 - Summary : Prevent click when transit
var x = event.pageX;
......@@ -1082,23 +1082,23 @@ CONTENTVIEW_EVENTS.mouseMove_CanvasMain = function(event) {
//examinate direction
if(CONTENTVIEW_GENERAL._moveNum==0 && deltaX < 0){
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left => next page
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left => next page
}
if(CONTENTVIEW_GENERAL._moveNum==2 && deltaX > 0){
CONTENTVIEW_GENERAL._moveNum = 1; // go from right to left and back to right => no move
CONTENTVIEW_GENERAL._moveNum = 1; // go from right to left and back to right => no move
}
if(CONTENTVIEW_GENERAL._moveNum==1 && deltaX < 0){
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left + back to right + go to left => next page
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left + back to right + go to left => next page
}
if(CONTENTVIEW_GENERAL._moveNum==0 && deltaX > 0){
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right=> priveous page
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right=> priveous page
}
if(CONTENTVIEW_GENERAL._moveNum==-2 && deltaX < 0){
CONTENTVIEW_GENERAL._moveNum = -1; // go from left to right and back to left => no move
CONTENTVIEW_GENERAL._moveNum = -1; // go from left to right and back to left => no move
}
if(CONTENTVIEW_GENERAL._moveNum==0 && deltaX > 0){
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right + back to left + go to right=> priveous page
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right + back to left + go to right=> priveous page
}
if(CONTENTVIEW_GENERAL.animateType == CONTENTVIEW_GENERAL.animateTypeKeys.Type_Slide){
......@@ -1114,12 +1114,12 @@ CONTENTVIEW_EVENTS.mouseMove_CanvasMain = function(event) {
var hitObj = CONTENTVIEW_GETDATA.getContent().currentPage.hitTest(imagePt.x, imagePt.y);
if(hitObj){
if(CONTENTVIEW.is3DObject(hitObj)){
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchMove_MouseMove;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchMove_MouseMove;
hitObj.action(imagePt);
}
}
else{
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
}
}
......@@ -1185,10 +1185,10 @@ CONTENTVIEW_EVENTS.mouseDown_CanvasMain = function(event) {
//End Function : No.20 - Editor : Long - Date: 08/17/2013 - Summary :
if(!CONTENTVIEW_GENERAL.isLoadingObject){
CONTENTVIEW.moveFlag = true;
CONTENTVIEW.moveFlag = true;
}
else{
CONTENTVIEW.moveFlag = false;
CONTENTVIEW.moveFlag = false;
}
//event.preventDefault();
......@@ -1196,12 +1196,12 @@ CONTENTVIEW_EVENTS.mouseDown_CanvasMain = function(event) {
$('#main').css('cursor', 'default');
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isIos() == false && CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid() == false) {
CONTENTVIEW_GENERAL.px = event.pageX;
CONTENTVIEW_GENERAL.py = event.pageY;
CONTENTVIEW_GENERAL.px = event.pageX;
CONTENTVIEW_GENERAL.py = event.pageY;
//Start Function : No.20
CONTENTVIEW_GENERAL._clickFirstPos = {x:event.pageX, y: event.pageY};
CONTENTVIEW_GENERAL._clickLastPos = {x:event.pageX, y: event.pageY};
CONTENTVIEW_GENERAL._clickFirstPos = {x:event.pageX, y: event.pageY};
CONTENTVIEW_GENERAL._clickLastPos = {x:event.pageX, y: event.pageY};
CONTENTVIEW_GENERAL._moveNum = 0;
......@@ -1223,28 +1223,28 @@ CONTENTVIEW_EVENTS.mouseDown_CanvasMain = function(event) {
//START TRB00090 - Editor: Long - Date : 09/26/2013 - Summary : remove time to detect 3d animate
if(!CONTENTVIEW_EVENTS.isPageTransition){
CONTENTVIEW_EVENTS._3dAnimate = true;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchStart_MouseDown;
CONTENTVIEW_3D._curr3dObject = hitPageObj;
CONTENTVIEW_EVENTS._3dAnimate = true;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchStart_MouseDown;
CONTENTVIEW_3D._curr3dObject = hitPageObj;
hitPageObj.action(imagePt);
CONTENTVIEW.moveFlag = false;
}
else{
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW.moveFlag = true;
}
//END TRB00090 - Editor: Long - Date : 09/26/2013 - Summary : remove time to detect 3d animate
}
else{
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
}
//End Function : No.9 - Editor : Long - Date : 08/16/2013 - Summary:
}
else {
//event.preventDefault();
CONTENTVIEW_GENERAL.px = event.targetTouches[0].pageX;
CONTENTVIEW_GENERAL.py = event.targetTouches[0].pageY;
CONTENTVIEW_GENERAL.px = event.targetTouches[0].pageX;
CONTENTVIEW_GENERAL.py = event.targetTouches[0].pageY;
}
};
......@@ -1257,15 +1257,15 @@ CONTENTVIEW_EVENTS.mouseUp_CanvasMain = function(event) {
}
if(CONTENTVIEW.moveFlag) {
CONTENTVIEW.moveFlag = false;
CONTENTVIEW.moveFlag = false;
$('#main').css('cursor', 'default');
// navigate page
if(CONTENTVIEW_GENERAL._moveNum == 2){
CONTENTVIEW_EVENTS.nextPage_click();
CONTENTVIEW_EVENTS.nextPage_click();
}else if (CONTENTVIEW_GENERAL._moveNum == -2){
CONTENTVIEW_EVENTS.prevPage_click();
CONTENTVIEW_EVENTS.prevPage_click();
}else {
CONTENTVIEW_GETDATA.correctCanvasPosition();
CONTENTVIEW_GETDATA.correctCanvasPosition();
}
//Check if mouse move is fired to prevent click next/ prev page
......@@ -1274,15 +1274,15 @@ CONTENTVIEW_EVENTS.mouseUp_CanvasMain = function(event) {
}
if(CONTENTVIEW_EVENTS._3dAnimate == true){
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchEnd_MouseUp;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchEnd_MouseUp;
CONTENTVIEW_3D._curr3dObject.action();
CONTENTVIEW_3D._curr3dObject.action();
}
if(CONTENTVIEW_EVENTS.isPageTransition){
CONTENTVIEW_EVENTS.isPageTransition = false;
CONTENTVIEW_EVENTS.isPageTransition = false;
}
//End Function : No.20
......@@ -1314,8 +1314,8 @@ CONTENTVIEW_EVENTS.imgBack_click = function() {
// window.history.back();
//}
//元の画面に戻って画面復帰
CONTENTVIEW.screenBack();
//元の画面に戻って画面復帰
CONTENTVIEW.screenBack();
}
} else {
/*check back */
......@@ -1364,7 +1364,7 @@ CONTENTVIEW_EVENTS.closePopUpCopyMemo = function() {
};
CONTENTVIEW_EVENTS.click_liAddMemo = function(event) {
CONTENTVIEW_GENERAL.typeSelectMemo = 1;
CONTENTVIEW_GENERAL.typeSelectMemo = 1;
$('#boxAddMemo').hide();
/* unlock dialog overlay */
......@@ -1375,7 +1375,7 @@ CONTENTVIEW_EVENTS.click_liAddMemo = function(event) {
};
CONTENTVIEW_EVENTS.click_liCopyMemo = function() {
CONTENTVIEW_GENERAL.typeSelectMemo = 2;
CONTENTVIEW_GENERAL.typeSelectMemo = 2;
$('#boxAddMemo').hide();
/* unlock dialog overlay */
......@@ -1404,7 +1404,7 @@ CONTENTVIEW_EVENTS.click_liDeleteMemo = function() {
* reset navi action as point session increase
*/
CONTENTVIEW_EVENTS.resetNaviAction = function(){
CONTENTVIEW_GENERAL._isPageNaviTouch = true;
CONTENTVIEW_GENERAL._isPageNaviTouch = true;
CONTENTVIEW_GENERAL._moveNum = 0;
CONTENTVIEW_GENERAL.touchStartedTime = new Date();
$('#mainPre').css("display",'none');
......@@ -1423,8 +1423,8 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
}
//evt.preventDefault();
//$('#debug').html("CONTENTVIEW_EVENTS.onTouchstart");
//CONTENTVIEW_STREAMING.handleDisplayToolbar();
//$('#debug').html("CONTENTVIEW_EVENTS.onTouchstart");
//CONTENTVIEW_STREAMING.handleDisplayToolbar();
var bContinue = true;
......@@ -1438,22 +1438,22 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
}
if( evt.pointerType != null ){
//console.log("evt.pointerType:" + evt.pointerType);
//console.log("evt.pointerType:" + evt.pointerType);
//evt.pointerType は IE以外 undef
switch (evt.pointerType) {
case evt.MSPOINTER_TYPE_TOUCH:
CONTENTVIEW_EVENTS._isTouching = true;
CONTENTVIEW_EVENTS._isTouching = true;
break;
case evt.MSPOINTER_TYPE_PEN:
bContinue = false;
break;
case evt.MSPOINTER_TYPE_MOUSE:
CONTENTVIEW_EVENTS._isTouching = false;
CONTENTVIEW_EVENTS._isTouching = false;
bContinue = false;
break;
}
} else {
CONTENTVIEW_EVENTS._isTouching = true;
CONTENTVIEW_EVENTS._isTouching = true;
}
if(!bContinue){
......@@ -1470,18 +1470,18 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
if(CONTENTVIEW_GENERAL._bWin8TouchEnabled){
CONTENTVIEW_GENERAL._bufferPoints = [];
CONTENTVIEW_GENERAL._bufferPoints = [];
if(CONTENTVIEW_GENERAL._startPoints.length == 0){
// start navi page case
touch1 = {clientX: evt.clientX, clientY: evt.clientY,pointerId: evt.pointerId};
CONTENTVIEW_GENERAL._startPoints.push(touch1);
if(CONTENTVIEW.userScale != 1){
CONTENTVIEW_GENERAL.px = evt.pageX;
CONTENTVIEW_GENERAL.py = evt.pageY;
CONTENTVIEW_GENERAL.px = evt.pageX;
CONTENTVIEW_GENERAL.py = evt.pageY;
}
else{
CONTENTVIEW_EVENTS.touchDownFirstPosX = evt.clientX;
CONTENTVIEW_EVENTS.touchDownFirstPosY = evt.clientY;
CONTENTVIEW_EVENTS.touchDownFirstPosX = evt.clientX;
CONTENTVIEW_EVENTS.touchDownFirstPosY = evt.clientY;
//Start Function : No.9 - Editor : Long - Date : 08/16/2013 - Summary :
var imagePt = CONTENTVIEW.screenToImage(evt.pageX, evt.pageY);
......@@ -1492,17 +1492,17 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
//START TRB00090 - Editor: Long - Date : 09/26/2013 - Summary : remove time to detect 3d animate
if(CONTENTVIEW.is3DObject(hitPageObj)){
if(CONTENTVIEW_EVENTS.isPageTransition){
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
}
else{
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchStart_MouseDown;
CONTENTVIEW_3D._curr3dObject = hitPageObj;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchStart_MouseDown;
CONTENTVIEW_3D._curr3dObject = hitPageObj;
hitPageObj.action(imagePt);
CONTENTVIEW_EVENTS._3dAnimate = true;
}
}
else{
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
}
//END TRB00090 - Editor: Long - Date : 09/26/2013 - Summary : remove time to detect 3d animate
}
......@@ -1513,7 +1513,7 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
// start zoom page action
if(CONTENTVIEW_GENERAL._isPageNaviTouch){
// reset navi page action if exists
CONTENTVIEW_EVENTS.resetNaviAction();
CONTENTVIEW_EVENTS.resetNaviAction();
}
touch1 = CONTENTVIEW_GENERAL._startPoints[0];
......@@ -1538,11 +1538,11 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
touch1 = {clientX: evt.clientX, clientY: evt.clientY,pointerId: evt.pointerId};
CONTENTVIEW_GENERAL._startPoints.push(touch1);
if(CONTENTVIEW_GENERAL._isPageNaviTouch){
CONTENTVIEW_EVENTS.resetNaviAction();
CONTENTVIEW_EVENTS.resetNaviAction();
}
if(CONTENTVIEW_GENERAL._isPageZoomTouch){
CONTENTVIEW_EVENTS.resetZoomAction();
CONTENTVIEW_EVENTS.resetZoomAction();
}
}
}
......@@ -1552,7 +1552,7 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
touch1 = evt.touches[0];
touch2 = evt.touches[1];
if(touch2 == null){
CONTENTVIEW_EVENTS._isClick = true;
CONTENTVIEW_EVENTS._isClick = true;
CONTENTVIEW_EVENTS._touchPageX = evt.touches[0].pageX;
CONTENTVIEW_EVENTS._touchPageY = evt.touches[0].pageY;
//set touch to move page flag
......@@ -1579,12 +1579,12 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
if(CONTENTVIEW.is3DObject(hitPageObj)){
//START TRB00090 - Editor: Long - Date : 09/26/2013 - Summary : remove time to detect 3d animate
if(CONTENTVIEW_EVENTS.isPageTransition){
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._isClick = true;
}
else{
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchStart_MouseDown;
CONTENTVIEW_3D._curr3dObject = hitPageObj;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchStart_MouseDown;
CONTENTVIEW_3D._curr3dObject = hitPageObj;
hitPageObj.action(imagePt);
CONTENTVIEW_EVENTS._3dAnimate = true;
CONTENTVIEW_EVENTS._isClick = false;
......@@ -1592,18 +1592,18 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
//END TRB00090 - Editor: Long - Date : 09/26/2013 - Summary : remove time to detect 3d animate
}
else{
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._isClick = true;
}
}
else{
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._isClick = true;
}
//End Function : No.9 - Editor : Long - Date : 08/16/2013 - Summary:
}
else if(CONTENTVIEW.userScale != 1){
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
//CONTENTVIEW_GENERAL.px = evt.pageX;
//CONTENTVIEW_GENERAL.py = evt.pageY;
//試験
......@@ -1612,14 +1612,14 @@ CONTENTVIEW_EVENTS.onTouchstart = function(evt){
}
else {
//ここにこない
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
}
}
//set begin value for zoom
if(touch1 && touch2) {
CONTENTVIEW_GENERAL._lastDist = CONTENTVIEW_EVENTS.getDistance({
CONTENTVIEW_GENERAL._lastDist = CONTENTVIEW_EVENTS.getDistance({
x: touch1.clientX,
y: touch1.clientY
}, {
......@@ -1651,18 +1651,18 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
//evt.pointerType は IE以外 undef
switch (evt.pointerType) {
case evt.MSPOINTER_TYPE_TOUCH:
CONTENTVIEW_EVENTS._isTouching = true;
CONTENTVIEW_EVENTS._isTouching = true;
break;
case evt.MSPOINTER_TYPE_PEN:
bContinue = false;
break;
case evt.MSPOINTER_TYPE_MOUSE:
CONTENTVIEW_EVENTS._isTouching = false;
CONTENTVIEW_EVENTS._isTouching = false;
bContinue = false;
break;
}
} else {
CONTENTVIEW_EVENTS._isTouching = true;
CONTENTVIEW_EVENTS._isTouching = true;
}
if(!bContinue){
......@@ -1674,9 +1674,9 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
evt.stopPropagation();
}
//if (CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid()) {
// CONTENTVIEW_EVENTS.TouchmoveCount = CONTENTVIEW_EVENTS.TouchmoveCount + 1;
//}
//if (CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid()) {
// CONTENTVIEW_EVENTS.TouchmoveCount = CONTENTVIEW_EVENTS.TouchmoveCount + 1;
//}
var touch1 = null;
var touch2 = null;
......@@ -1686,7 +1686,7 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
//move page case
//when change from zoom mode
if(CONTENTVIEW.userScale != 1){
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
//START TRB00097
CONTENTVIEW.cancelClick = true;
//END TRB00097
......@@ -1713,11 +1713,11 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
// store current mouse point
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isIos() == false && CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid() == false) {
CONTENTVIEW_GENERAL.px = evt.pageX;
CONTENTVIEW_GENERAL.py = evt.pageY;
CONTENTVIEW_GENERAL.px = evt.pageX;
CONTENTVIEW_GENERAL.py = evt.pageY;
} else {
CONTENTVIEW_GENERAL.px = evt.targetTouches[0].pageX;
CONTENTVIEW_GENERAL.py = evt.targetTouches[0].pageY;
CONTENTVIEW_GENERAL.px = evt.targetTouches[0].pageX;
CONTENTVIEW_GENERAL.py = evt.targetTouches[0].pageY;
}
// redraw
......@@ -1727,32 +1727,32 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
}
else{
if(CONTENTVIEW_EVENTS._3dAnimate){
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
var imagePt = CONTENTVIEW.screenToImage(evt.pageX, evt.pageY);
var hitObj = CONTENTVIEW_GETDATA.getContent().currentPage.hitTest(imagePt.x, imagePt.y);
if(hitObj){
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchMove_MouseMove;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchMove_MouseMove;
hitObj.action(imagePt);
}
}
else{
CONTENTVIEW_GENERAL._isPageNaviTouch = true;
CONTENTVIEW_GENERAL._isPageNaviTouch = true;
//Detect is page transition to prevent 3d object animate
var posDiffX = evt.clientX - CONTENTVIEW_EVENTS.touchDownFirstPosX ;
var posDiffY = evt.clientY - CONTENTVIEW_EVENTS.touchDownFirstPosY ;
if(Math.abs(posDiffX) < CONTENTVIEW_EVENTS.clickLimitArea && Math.abs(posDiffY) < CONTENTVIEW_EVENTS.clickLimitArea){
CONTENTVIEW_EVENTS.isPageTransition = false;
CONTENTVIEW_EVENTS.isPreventClick = false;
CONTENTVIEW_EVENTS.isPageTransition = false;
CONTENTVIEW_EVENTS.isPreventClick = false;
}
else{
CONTENTVIEW_EVENTS.isPageTransition = true;
CONTENTVIEW_EVENTS.isPageTransition = true;
//Start : TRB00005, TRB00006 - Editor : Long - Date: 08/28/2013
//Prevent CLick when page is being transit
CONTENTVIEW_EVENTS.isPreventClick = true;
CONTENTVIEW_EVENTS.isPreventClick = true;
//End : TRB00005, TRB00006 - Editor : Long - Date: 08/28/2013
}
......@@ -1770,11 +1770,11 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
var temp = CONTENTVIEW_GENERAL._startPoints[0];
// set first and last Pos
if(CONTENTVIEW_GENERAL._touchFirstPos == null){
CONTENTVIEW_GENERAL._touchFirstPos = {x:temp.clientX, y: temp.clientX};
CONTENTVIEW_GENERAL._touchFirstPos = {x:temp.clientX, y: temp.clientX};
CONTENTVIEW_GENERAL._moveNum = 0;
}
if(CONTENTVIEW_GENERAL._touchLastPos==null){
CONTENTVIEW_GENERAL._touchLastPos = {x:temp.clientX, y: temp.clientX};
CONTENTVIEW_GENERAL._touchLastPos = {x:temp.clientX, y: temp.clientX};
}
}
}
......@@ -1782,10 +1782,10 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
else if(CONTENTVIEW_GENERAL._startPoints.length == 2){
//zoom page case
CONTENTVIEW_GENERAL._isPageZoomTouch = true;
CONTENTVIEW_GENERAL._isPageZoomTouch = true;
//rest navi touch if active
if(CONTENTVIEW_GENERAL._isPageNaviTouch){
CONTENTVIEW_EVENTS.resetNaviAction();
CONTENTVIEW_EVENTS.resetNaviAction();
}
//console.log("zoom page case");
......@@ -1804,7 +1804,7 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
// in this case do nothing and go to get next pointerId
return;
}else if(touch1.pointerId > evt.pointerId){
CONTENTVIEW_GENERAL._bufferPoints = []; // reset buffer to get pointerId with correct order from begin
CONTENTVIEW_GENERAL._bufferPoints = []; // reset buffer to get pointerId with correct order from begin
return;
}
touch2 = {clientX: evt.clientX, clientY: evt.clientY, pointerId: evt.pointerId};
......@@ -1816,11 +1816,11 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
else {
//reset navi touch if active
if(CONTENTVIEW_GENERAL._isPageNaviTouch){
CONTENTVIEW_EVENTS.resetNaviAction();
CONTENTVIEW_EVENTS.resetNaviAction();
}
if(CONTENTVIEW_GENERAL._isPageZoomTouch){
CONTENTVIEW_EVENTS.resetZoomAction();
CONTENTVIEW_EVENTS.resetZoomAction();
}
return;
}
......@@ -1838,17 +1838,17 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
// zoom page case
if(CONTENTVIEW_GENERAL._isPageZoomTouch) {
CONTENTVIEW_EVENTS.processZoomPage(touch1, touch2);
CONTENTVIEW_EVENTS.processZoomPage(touch1, touch2);
}
}
else{
//CONTENTVIEW_EVENTS._isClick = false;
//CONTENTVIEW_EVENTS._isClick = false;
// for android or ipad
touch1 = evt.touches[0];
touch2 = evt.touches[1];
if( touch2 != null ){
CONTENTVIEW_EVENTS._isClick = false;
CONTENTVIEW_EVENTS._isClick = false;
}
if(CONTENTVIEW_EVENTS._3dAnimate){
......@@ -1858,13 +1858,13 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
//START TRB00090 - Editor: Long - Date 09/30/2013 - Summary: Fix animate 3d object in ipad
if(hitObj){
if(CONTENTVIEW.is3DObject(hitObj)){
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchMove_MouseMove;
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchMove_MouseMove;
hitObj.action(imagePt);
}
}
else{
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
//CONTENTVIEW_GENERAL._isPageNaviTouch = true;
}
//END TRB00090 - Editor: Long - Date 09/30/2013 - Summary: Fix animate 3d object in ipad
......@@ -1872,7 +1872,7 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
else{
//update last touch position
if(touch2 == null && CONTENTVIEW_GENERAL._isPageNaviTouch){
CONTENTVIEW_EVENTS.isPageTransition = true;
CONTENTVIEW_EVENTS.isPageTransition = true;
currPos = {x:touch1.clientX, y: touch1.clientY};
if(!CONTENTVIEW_EVENTS._transitionObject.processNaviPage(currPos)){
......@@ -1908,17 +1908,17 @@ CONTENTVIEW_EVENTS.onTouchmove = function(evt){
CONTENTVIEW_GENERAL.px = evt.targetTouches[0].pageX;
CONTENTVIEW_GENERAL.py = evt.targetTouches[0].pageY;
// redraw
CONTENTVIEW.flip();
CONTENTVIEW.zoomVideo();
CONTENTVIEW.closeDialogPopUpText();
// redraw
CONTENTVIEW.flip();
CONTENTVIEW.zoomVideo();
CONTENTVIEW.closeDialogPopUpText();
}
}
// zoom page case
if(touch1 && touch2) {
CONTENTVIEW_EVENTS.processZoomPage(touch1, touch2);
CONTENTVIEW_EVENTS.processZoomPage(touch1, touch2);
}
}
}
......@@ -1940,20 +1940,20 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
//evt.pointerType は IE以外 undef
switch (evt.pointerType) {
case evt.MSPOINTER_TYPE_TOUCH:
CONTENTVIEW_EVENTS._isTouching = true;
CONTENTVIEW_EVENTS._isTouching = true;
break;
case evt.MSPOINTER_TYPE_PEN:
CONTENTVIEW_EVENTS._isTouching = false;
CONTENTVIEW_EVENTS._isTouching = false;
bContinue = false;
break;
case evt.MSPOINTER_TYPE_MOUSE:
CONTENTVIEW_EVENTS._isTouching = false;
CONTENTVIEW_EVENTS._isTouching = false;
bContinue = false;
break;
}
} else {
//タッチ操作終了
CONTENTVIEW_EVENTS._isTouching = false;
CONTENTVIEW_EVENTS._isTouching = false;
}
if(!bContinue){
......@@ -1970,17 +1970,17 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
if(CONTENTVIEW_GENERAL._bWin8TouchEnabled){
// reset all flag
CONTENTVIEW_GENERAL._startPoints = [];
CONTENTVIEW_GENERAL._bufferPoints = [];
CONTENTVIEW_GENERAL._startPoints = [];
CONTENTVIEW_GENERAL._bufferPoints = [];
if(CONTENTVIEW_EVENTS._3dAnimate == true){
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchEnd_MouseUp;
CONTENTVIEW_3D._curr3dObject.action();
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchEnd_MouseUp;
CONTENTVIEW_3D._curr3dObject.action();
}
if(CONTENTVIEW_EVENTS.isPageTransition){
CONTENTVIEW_EVENTS.isPageTransition = false;
CONTENTVIEW_EVENTS.isPageTransition = false;
CONTENTVIEW_EVENTS.touchDownFirstPosX = 0;
CONTENTVIEW_EVENTS.touchDownFirstPosY = 0;
}
......@@ -1990,27 +1990,27 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
//move page if enough condition
if(CONTENTVIEW_GENERAL._bTransitionEnable){
if(CONTENTVIEW_GENERAL._isPageNaviTouch){
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
CONTENTVIEW_GENERAL._isPageNaviTouch = false;
//calculate time period from last time of touchstart event
var currDate = new Date();
var period = currDate - CONTENTVIEW_GENERAL.touchStartedTime;
if(period >= CONTENTVIEW_GENERAL._touchMoveTimePeriod && period < CONTENTVIEW_GENERAL._touchMoveTimePeriodInvalid){
CONTENTVIEW_GENERAL.touchStartedTime= 0;
CONTENTVIEW_GENERAL.touchStartedTime= 0;
if(CONTENTVIEW_GENERAL._moveNum == 2){
CONTENTVIEW_EVENTS.nextPage_click();
//変数後始末
CONTENTVIEW_EVENTS.nextPage_click();
//変数後始末
CONTENTVIEW.cancelClick = false;
CONTENTVIEW_EVENTS._isClick = false;
return;
return;
}else if (CONTENTVIEW_GENERAL._moveNum == -2){
CONTENTVIEW_EVENTS.prevPage_click();
//変数後始末
CONTENTVIEW_EVENTS.prevPage_click();
//変数後始末
CONTENTVIEW.cancelClick = false;
CONTENTVIEW_EVENTS._isClick = false;
return;
return;
}else {
CONTENTVIEW_GETDATA.correctCanvasPosition();
CONTENTVIEW_GETDATA.correctCanvasPosition();
}
}
}
......@@ -2020,11 +2020,11 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
if(CONTENTVIEW_EVENTS._isClick == true){
if(CONTENTVIEW_GENERAL.isLoadingObject){
CONTENTVIEW_EVENTS._isClick = false;
CONTENTVIEW_EVENTS._isClick = false;
return;
}
else{
CONTENTVIEW.cancelClick = false;
CONTENTVIEW.cancelClick = false;
}
if (!CONTENTVIEW.cancelClick) {
......@@ -2037,7 +2037,7 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
if ((CONTENTVIEW_EVENTS._touchPageX - CONTENTVIEW.marginX) >= CONTENTVIEW.destRect.left && (CONTENTVIEW_EVENTS._touchPageX - CONTENTVIEW.marginX) <= CONTENTVIEW.destRect.right) {
if (ClientData.IsAddingMemo() == true) {
if (!ClientData.memo_copyText()) {
CONTENTVIEW_MEMO.AddMemo(CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_EVENTS._touchPageX, CONTENTVIEW_EVENTS._touchPageY, function () {
CONTENTVIEW_MEMO.AddMemo(CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_EVENTS._touchPageX, CONTENTVIEW_EVENTS._touchPageY, function () {
//set flag change memo
ClientData.isChangedMemo(true);
ClientData.IsAddingMemo(false);
......@@ -2052,7 +2052,7 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
}
else {
if (CONTENTVIEW_GENERAL.typeSelectMemo == 1) { /* add new */
CONTENTVIEW_MEMO.AddMemo(CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_GENERAL.posXPopupMemo, CONTENTVIEW_GENERAL.posYPopupMemo, function () {
CONTENTVIEW_MEMO.AddMemo(CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_GENERAL.posXPopupMemo, CONTENTVIEW_GENERAL.posYPopupMemo, function () {
//set flag change memo
ClientData.isChangedMemo(true);
ClientData.IsAddingMemo(false);
......@@ -2066,7 +2066,7 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
});
} else if (CONTENTVIEW_GENERAL.typeSelectMemo == 2) { /* copy */
CONTENTVIEW_MEMO.CopyMemo(ClientData.memo_copyText(), CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_GENERAL.posXPopupMemo, CONTENTVIEW_GENERAL.posYPopupMemo, function () {
CONTENTVIEW_MEMO.CopyMemo(ClientData.memo_copyText(), CONTENTVIEW_GENERAL.contentID, CONTENTVIEW.changePageIndex(CONTENTVIEW_GETDATA.getPageIndex()), $('#divDialogMemo'), CONTENTVIEW_GENERAL.posXPopupMemo, CONTENTVIEW_GENERAL.posYPopupMemo, function () {
//set flag change memo
ClientData.isChangedMemo(true);
ClientData.IsAddingMemo(false);
......@@ -2085,18 +2085,18 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
var isClickMemo = false;
if (CONTENTVIEW_GENERAL.isOpenPopUpText == true) {
CONTENTVIEW_GENERAL.isOpenPopUpText = false;
CONTENTVIEW_POPUPTEXT.ClosePopupText();
CONTENTVIEW_GENERAL.isOpenPopUpText = false;
CONTENTVIEW_POPUPTEXT.ClosePopupText();
}
if (CONTENTVIEW_GENERAL.isOpenPopUpMemo == true) {
CONTENTVIEW_GENERAL.isOpenPopUpMemo = false;
CONTENTVIEW_GENERAL.isOpenPopUpMemo = false;
$("#pop_up_memo").hide();
}
/* click memo edit */
if (ClientData.IsDisplayMemo() == true) {
CONTENTVIEW_GETDATA.getAllMemoOfPage();
CONTENTVIEW_GETDATA.getAllMemoOfPage();
/* check exist object memo in mouse position */
for (var nIndex = 0; nIndex < CONTENTVIEW_CREATEOBJECT.memoObjects.length; nIndex++) {
var hitPageObjMemo = CONTENTVIEW_CREATEOBJECT.memoObjects[nIndex];
......@@ -2105,7 +2105,7 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
//hitPageObjMemo.action();
/* save object memo */
CONTENTVIEW_GENERAL.objEditMemo = hitPageObjMemo;
CONTENTVIEW_GENERAL.objEditMemo = hitPageObjMemo;
var posMemoX = CONTENTVIEW_EVENTS._touchPageX;
var posMemoY = CONTENTVIEW_EVENTS._touchPageY;
......@@ -2168,19 +2168,19 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
//}
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isIos() == false && CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid() == false) {
/* area next and prev page */
var cwMain = $('#main').width();
if (CONTENTVIEW_EVENTS._touchPageX > 0 && CONTENTVIEW_EVENTS._touchPageX < 300) {
CONTENTVIEW_EVENTS.prevPage_click();
} else if (CONTENTVIEW_EVENTS._touchPageX > (cwMain - 300) && CONTENTVIEW_EVENTS._touchPageX < cwMain) {
CONTENTVIEW_EVENTS.nextPage_click();
}
/* area next and prev page */
var cwMain = $('#main').width();
if (CONTENTVIEW_EVENTS._touchPageX > 0 && CONTENTVIEW_EVENTS._touchPageX < 300) {
CONTENTVIEW_EVENTS.prevPage_click();
} else if (CONTENTVIEW_EVENTS._touchPageX > (cwMain - 300) && CONTENTVIEW_EVENTS._touchPageX < cwMain) {
CONTENTVIEW_EVENTS.nextPage_click();
}
}
//CONTENTVIEW_STREAMING.debugLog("CONTENTVIEW_EVENTS.onTouchEnd");
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isMobile()) {
CONTENTVIEW.handleDisplayMobileToolbar();
}
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isMobile()) {
CONTENTVIEW.handleDisplayMobileToolbar();
}
}
}
}
......@@ -2199,12 +2199,12 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
//if (CONTENTVIEW_GENERAL.avwUserEnvObj.isIos() == false && CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid() == false) {
var cwMain = $('#main').width();
if (CONTENTVIEW_EVENTS._touchPageX > 0 && CONTENTVIEW_EVENTS._touchPageX < 300) {
CONTENTVIEW_EVENTS.prevPage_click();
} else if (CONTENTVIEW_EVENTS._touchPageX > (cwMain - 300) && CONTENTVIEW_EVENTS._touchPageX < cwMain) {
CONTENTVIEW_EVENTS.nextPage_click();
}
var cwMain = $('#main').width();
if (CONTENTVIEW_EVENTS._touchPageX > 0 && CONTENTVIEW_EVENTS._touchPageX < 300) {
CONTENTVIEW_EVENTS.prevPage_click();
} else if (CONTENTVIEW_EVENTS._touchPageX > (cwMain - 300) && CONTENTVIEW_EVENTS._touchPageX < cwMain) {
CONTENTVIEW_EVENTS.nextPage_click();
}
//}
}
}
......@@ -2215,13 +2215,13 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
else{
//Do nothing
if(CONTENTVIEW_EVENTS._3dAnimate == true){
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchEnd_MouseUp;
CONTENTVIEW_3D._curr3dObject.action();
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_3D._3dAction = CONTENTVIEW_3D._3dActionType.TouchEnd_MouseUp;
CONTENTVIEW_3D._curr3dObject.action();
}
if(CONTENTVIEW_EVENTS.isPageTransition){
CONTENTVIEW_EVENTS.isPageTransition = false;
CONTENTVIEW_EVENTS.isPageTransition = false;
}
}
};
......@@ -2239,12 +2239,12 @@ CONTENTVIEW_EVENTS.processZoomPage = function(touch1, touch2){
if(CONTENTVIEW_GENERAL._lastDist != dist) {
if(dist > CONTENTVIEW_GENERAL._lastDist){
CONTENTVIEW.userScale += 0.05;
CONTENTVIEW.userScale += 0.05;
if (CONTENTVIEW.userScale > 4) {
CONTENTVIEW.userScale = 4;
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
CONTENTVIEW.userScale = 4;
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
}else {
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
CONTENTVIEW.flip();
//Start Function : No.4 - Editor : Long - Date : 08/13/2013 - Summary : Fix for zooming
......@@ -2269,13 +2269,13 @@ CONTENTVIEW_EVENTS.processZoomPage = function(touch1, touch2){
}
else if (dist < CONTENTVIEW_GENERAL._lastDist)
{
CONTENTVIEW.userScale -= 0.05;
CONTENTVIEW.userScale -= 0.05;
if (CONTENTVIEW.userScale < 1) {
CONTENTVIEW.userScale = 1;
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
CONTENTVIEW.userScale = 1;
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
}else{
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
CONTENTVIEW.flip();
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
CONTENTVIEW.flip();
//Start Function : No.4 - Editor : Long - Date : 08/13/2013 - Summary : Fix for zooming
if(CONTENTVIEW_GETDATA.getPageIndex() < CONTENTVIEW_GENERAL.totalPage - 1){
//START TRB00097
......@@ -2326,23 +2326,23 @@ CONTENTVIEW_EVENTS.processNaviPage = function(currPos){
//examinate direction
if(CONTENTVIEW_GENERAL._moveNum==0 && lMoveX < 0){
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left => next page
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left => next page
}
if(CONTENTVIEW_GENERAL._moveNum==2 && lMoveX > 0){
CONTENTVIEW_GENERAL._moveNum = 1; // go from right to left and back to right => no move
CONTENTVIEW_GENERAL._moveNum = 1; // go from right to left and back to right => no move
}
if(CONTENTVIEW_GENERAL._moveNum==1 && lMoveX < 0){
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left + back to right + go to left => next page
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left + back to right + go to left => next page
}
if(CONTENTVIEW_GENERAL._moveNum==0 && lMoveX > 0){
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right=> priveous page
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right=> priveous page
}
if(CONTENTVIEW_GENERAL._moveNum==-2 && lMoveX < 0){
CONTENTVIEW_GENERAL._moveNum = -1; // go from left to right and back to left => no move
CONTENTVIEW_GENERAL._moveNum = -1; // go from left to right and back to left => no move
}
if(CONTENTVIEW_GENERAL._moveNum==0 && lMoveX > 0){
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right + back to left + go to right=> priveous page
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right + back to left + go to right=> priveous page
}
//console.log("_moveNum:" +CONTENTVIEW_GENERAL._moveNum);
......@@ -2389,23 +2389,23 @@ TransitionObject.prototype.processNaviPage = function (currPos) {
}
//examinate direction
if(CONTENTVIEW_GENERAL._moveNum==0 && lMoveX < 0){
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left => next page
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left => next page
}
if(CONTENTVIEW_GENERAL._moveNum==2 && lMoveX > 0){
CONTENTVIEW_GENERAL._moveNum = 1; // go from right to left and back to right => no move
CONTENTVIEW_GENERAL._moveNum = 1; // go from right to left and back to right => no move
}
if(CONTENTVIEW_GENERAL._moveNum==1 && lMoveX < 0){
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left + back to right + go to left => next page
CONTENTVIEW_GENERAL._moveNum = 2; // go from right to left + back to right + go to left => next page
}
if(CONTENTVIEW_GENERAL._moveNum==0 && lMoveX > 0){
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right=> priveous page
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right=> priveous page
}
if(CONTENTVIEW_GENERAL._moveNum==-2 && lMoveX < 0){
CONTENTVIEW_GENERAL._moveNum = -1; // go from left to right and back to left => no move
CONTENTVIEW_GENERAL._moveNum = -1; // go from left to right and back to left => no move
}
if(CONTENTVIEW_GENERAL._moveNum==0 && lMoveX > 0){
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right + back to left + go to right=> priveous page
CONTENTVIEW_GENERAL._moveNum = -2; // go from left to right + back to left + go to right=> priveous page
}
//console.log("_moveNum:" +CONTENTVIEW_GENERAL._moveNum);
......@@ -2422,31 +2422,31 @@ TransitionObject.prototype.processNaviPage = function (currPos) {
CONTENTVIEW_EVENTS._transitionObject = new TransitionObject();
$(function () {
//CONTENTVIEW_EVENTS.ready();
//CONTENTVIEW_EVENTS.ready();
});
CONTENTVIEW_EVENTS.ready = function(){
CONTENTVIEW_EVENTS.altMode = false;
//limit area to detech if it is click(on win8)
CONTENTVIEW_EVENTS.clickLimitArea = 20;
//touch position
CONTENTVIEW_EVENTS.touchDownFirstPosX = 0;
CONTENTVIEW_EVENTS.touchDownFirstPosY = 0;
//position for click event on touch device
CONTENTVIEW_EVENTS._touchPageX = 0;
CONTENTVIEW_EVENTS._touchPageY = 0;
//Detect touch
CONTENTVIEW_EVENTS._isTouching = false;
//Detect click on touch device
CONTENTVIEW_EVENTS._isClick = false;
//Detech if page is being transition
CONTENTVIEW_EVENTS.isPageTransition = false;
//Is 3d animating
CONTENTVIEW_EVENTS._3dAnimate = false;
//is prevent click event
CONTENTVIEW_EVENTS.isPreventClick = false;
CONTENTVIEW_EVENTS.altMode = false;
//limit area to detech if it is click(on win8)
CONTENTVIEW_EVENTS.clickLimitArea = 20;
//touch position
CONTENTVIEW_EVENTS.touchDownFirstPosX = 0;
CONTENTVIEW_EVENTS.touchDownFirstPosY = 0;
//position for click event on touch device
CONTENTVIEW_EVENTS._touchPageX = 0;
CONTENTVIEW_EVENTS._touchPageY = 0;
//Detect touch
CONTENTVIEW_EVENTS._isTouching = false;
//Detect click on touch device
CONTENTVIEW_EVENTS._isClick = false;
//Detech if page is being transition
CONTENTVIEW_EVENTS.isPageTransition = false;
//Is 3d animating
CONTENTVIEW_EVENTS._3dAnimate = false;
//is prevent click event
CONTENTVIEW_EVENTS.isPreventClick = false;
};
//名前空間用のオブジェクトを用意する
var CONTENTVIEW_EXAM = {};
// show dialog anket content
CONTENTVIEW_EXAM.showExam = function(url, fullscreen, objectId) {
var $container = $('#dialog');
//url = url + "?sid=" + CONTENTVIEW.getSessionId();
//url = "http://agentec.jp/";
$container.html('');
$container.addClass('anket-dialog');
var canvas = document.getElementById('main');
var width = fullscreen == true ? canvas.width : 340;
if (fullscreen == true) {
$container.attr('style', 'width:' + width + 'px; left:10px;right:auto;');
}
else {
$container.attr('style', 'width:' + width + 'px; right:10px;left:auto;'); // !important
}
$container.draggable({ handle: "h1" });
$container.html(
'<h1>'+I18N.i18nText('txtExamTitle')
+ '<img src="img/viewer/x.png" style="margin:3px 3px 0px 21px" id="btnClose" class="align_right" ></img>'
+ '</h1>'
+ '<div class="anket-container" id="anket-container"><iframe width="' + width + '" height="100%" frameborder="0" scrolling="auto" src="' + url + '">'
+ '</iframe></div>'
+ '<div class="anket-commands" id="anket-commands"><input type="button" value="' + I18N.i18nText('txtTransparent') + '" id="btnFullOpacity"/> <input type="button" value="' + I18N.i18nText('txtSemiTransparent') + '" id="btnApartOpacity"/> <input type="button" value="' + I18N.i18nText('txtNoTransparent') + '" id="btnNoOpacity"/></div><div style="clear:both;"></div>'
);
$("#btnClose").on({
'click touchend': function(ev){
//時間記録
var dateEnd = new Date();
var actionTime = dateEnd.subtractBySeconds(dateStart);
//alert("actionTime:" + actionTime);
COMMON.SetObjectLogActionTime( CONTENTVIEW_GENERAL.contentID, objectId, actionTime );
$container.removeAttr('style');
CONTENTVIEW_GENERAL.hideDialog();
return false;
},
'touchstart touchmove': function(){
//これを入れないと次にダイアログを開くと表示位置が大きくズレる
return false;
}
});
//時間記録
var dateStart = new Date();
var avwUserEnvObj = new UserEnvironment();
// set overflow for container iframe
if (avwUserEnvObj.isIos()) {
$('#dialog .anket-container').css('overflow', 'scroll');
//$('#dialog .anket-container').css('-webkit-overflow-scrolling', 'touch');
//$('#dialog .anket-container').css('position', 'relative');
if (fullscreen == true) {
$container.attr('style', 'width:' + width + 'px; left:10px;right:auto;'); // !important on ipad can't move dialog
}
else {
if (avwUserEnvObj.isIpad()) {
$container.attr('style', 'width:' + width + 'px; right:20px;left:auto;');
} else {
$container.attr('style', 'width:' + width + 'px; right:3px;left:auto;');
}
}
}
// click on button change transparent
$('#dialog .anket-commands input').click(
function () {
//START TRB00092 - EDITOR: Long - Date: 09/26/2013 - Summary : Fix opacity
if ($(this).index() == 0) {
//set transparent
$('#dialog,#dialog iframe,#anket-commands,#anket-commands input').removeClass('anket-opacity anket-transparent anket-translucent anket-transparent-content').addClass('anket-transparent');
$('#anket-container').removeClass('anket-opacity anket-transparent anket-translucent anket-transparent-content').addClass('anket-transparent-content');
}
else if ($(this).index() == 1) {
// set translucent
//END TRB00092 - EDITOR: Long - Date: 09/26/2013 - Summary : Fix opacity
$('#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container').removeClass('anket-opacity anket-transparent anket-translucent anket-transparent-content').addClass('anket-translucent');
}
else {
//set opacity
$('#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container').removeClass('anket-opacity anket-transparent anket-translucent anket-transparent-content').addClass('anket-opacity');
}
}
);
// resize anket
CONTENTVIEW_EXAM.resizeAnket();
};
// resize dialog anket
CONTENTVIEW_EXAM.resizeAnket = function() {
// get canvas main
var canvas = document.getElementById('main');
var height = canvas.height;
var top = (CONTENTVIEW_GENERAL.isFullScreen?0:$('#header_toolbar').height()) + 4; // get top position for dialog 4 for space
// set top dialog
$('#dialog').height(height).css('top', top);
var iframeHeight = height - $('#dialog h1').height() - $('#dialog .anket-commands').height() - 8; // 8 for 2xspace
// set height for iframe
$('#dialog iframe').attr('height', iframeHeight);
// set height for anket container
$('#dialog .anket-container').css('height', iframeHeight);
};
CONTENTVIEW_EXAM.ready = function(){
};
//名前空間用のオブジェクトを用意する
var CONTENTVIEW_EXAM = {};
// show dialog anket content
CONTENTVIEW_EXAM.showExam = function(url, fullscreen, objectId) {
var $container = $('#dialog');
//url = url + "?sid=" + CONTENTVIEW.getSessionId();
//url = "http://agentec.jp/";
$container.html('');
$container.addClass('anket-dialog');
var canvas = document.getElementById('main');
var width = fullscreen == true ? canvas.width : 340;
if (fullscreen == true) {
$container.attr('style', 'width:' + width + 'px; left:10px;right:auto;');
}
else {
$container.attr('style', 'width:' + width + 'px; right:10px;left:auto;'); // !important
}
$container.draggable({ handle: "h1" });
$container.html(
'<h1>'+I18N.i18nText('txtExamTitle')
+ '<img src="img/viewer/x.png" style="margin:3px 3px 0px 21px" id="btnClose" class="align_right" ></img>'
+ '</h1>'
+ '<div class="anket-container" id="anket-container"><iframe width="' + width + '" height="100%" frameborder="0" scrolling="auto" src="' + url + '">'
+ '</iframe></div>'
+ '<div class="anket-commands" id="anket-commands"><input type="button" value="' + I18N.i18nText('txtTransparent') + '" id="btnFullOpacity"/> <input type="button" value="' + I18N.i18nText('txtSemiTransparent') + '" id="btnApartOpacity"/> <input type="button" value="' + I18N.i18nText('txtNoTransparent') + '" id="btnNoOpacity"/></div><div style="clear:both;"></div>'
);
$("#btnClose").on({
'click touchend': function(ev){
//時間記録
var dateEnd = new Date();
var actionTime = dateEnd.subtractBySeconds(dateStart);
//alert("actionTime:" + actionTime);
COMMON.SetObjectLogActionTime( CONTENTVIEW_GENERAL.contentID, objectId, actionTime );
$container.removeAttr('style');
CONTENTVIEW_GENERAL.hideDialog();
return false;
},
'touchstart touchmove': function(){
//これを入れないと次にダイアログを開くと表示位置が大きくズレる
return false;
}
});
//時間記録
var dateStart = new Date();
var avwUserEnvObj = new UserEnvironment();
// set overflow for container iframe
if (avwUserEnvObj.isIos()) {
$('#dialog .anket-container').css('overflow', 'scroll');
//$('#dialog .anket-container').css('-webkit-overflow-scrolling', 'touch');
//$('#dialog .anket-container').css('position', 'relative');
if (fullscreen == true) {
$container.attr('style', 'width:' + width + 'px; left:10px;right:auto;'); // !important on ipad can't move dialog
}
else {
if (avwUserEnvObj.isIpad()) {
$container.attr('style', 'width:' + width + 'px; right:20px;left:auto;');
} else {
$container.attr('style', 'width:' + width + 'px; right:3px;left:auto;');
}
}
}
// click on button change transparent
$('#dialog .anket-commands input').click(
function () {
//START TRB00092 - EDITOR: Long - Date: 09/26/2013 - Summary : Fix opacity
if ($(this).index() == 0) {
//set transparent
$('#dialog,#dialog iframe,#anket-commands,#anket-commands input').removeClass('anket-opacity anket-transparent anket-translucent anket-transparent-content').addClass('anket-transparent');
$('#anket-container').removeClass('anket-opacity anket-transparent anket-translucent anket-transparent-content').addClass('anket-transparent-content');
}
else if ($(this).index() == 1) {
// set translucent
//END TRB00092 - EDITOR: Long - Date: 09/26/2013 - Summary : Fix opacity
$('#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container').removeClass('anket-opacity anket-transparent anket-translucent anket-transparent-content').addClass('anket-translucent');
}
else {
//set opacity
$('#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container').removeClass('anket-opacity anket-transparent anket-translucent anket-transparent-content').addClass('anket-opacity');
}
}
);
// resize anket
CONTENTVIEW_EXAM.resizeAnket();
};
// resize dialog anket
CONTENTVIEW_EXAM.resizeAnket = function() {
// get canvas main
var canvas = document.getElementById('main');
var height = canvas.height;
var top = (CONTENTVIEW_GENERAL.isFullScreen?0:$('#header_toolbar').height()) + 4; // get top position for dialog 4 for space
// set top dialog
$('#dialog').height(height).css('top', top);
var iframeHeight = height - $('#dialog h1').height() - $('#dialog .anket-commands').height() - 8; // 8 for 2xspace
// set height for iframe
$('#dialog iframe').attr('height', iframeHeight);
// set height for anket container
$('#dialog .anket-container').css('height', iframeHeight);
};
CONTENTVIEW_EXAM.ready = function(){
};
......@@ -12,17 +12,17 @@ CONTENTVIEW_GETDATA.getURLPageImage = function(apiName) {
var url = ClientData.conf_apiUrl();
url = AVWEB.format(url, ClientData.userInfo_accountPath()) + '/' + apiName + '/?isStreaming=' + isStreaming;
//オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
url = url + '&pid=' + CONTENTVIEW_GENERAL.pid;
url = url + '&pid=' + CONTENTVIEW_GENERAL.pid;
}
return url;
};
CONTENTVIEW_GETDATA.getPageObjectsByPageIndex = function(contentData, nIndexPage) {
CONTENTVIEW_GENERAL.pageObjects = [];
CONTENTVIEW_GENERAL.pageObjects = [];
var currentPageObjects;
for (var nIndex = 0; nIndex < contentData.length; nIndex++) {
......@@ -335,7 +335,7 @@ CONTENTVIEW_GETDATA.getMediaType1 = function(iValueObj) {
}
//END TRB00093 - Editor : Long - Date: 09/26/2013 - Summary : Check undefine before get
//CONTENTVIEW_STREAMING.debugLog("resourceUrl:" + obj.resourceUrl);
//CONTENTVIEW_STREAMING.debugLog("resourceUrl:" + obj.resourceUrl);
pageObject["imageUrl"] = AVWEB.getURL("webResourceDownload") + "&sid=" + CONTENTVIEW.getSessionId() + "&resourceId=" + iValueObj.mediaInfo.resourceId;
pageObject["resourceUrl"] = resourceUrl;
......@@ -824,21 +824,21 @@ CONTENTVIEW_GETDATA.getMediaType11 = function(iValueObj) {
CONTENTVIEW_GETDATA.getMediaType12 = function(iValueObj) {
var pageObject = [];
var pageObject = [];
//Get object Info
pageObject['mediaType'] = iValueObj.mediaType;
pageObject['id'] = "MediaType12_" + iValueObj.mediaInfo.resourceId;
pageObject['actionType'] = iValueObj.action.actionType;
//Get object Info
pageObject['mediaType'] = iValueObj.mediaType;
pageObject['id'] = "MediaType12_" + iValueObj.mediaInfo.resourceId;
pageObject['actionType'] = iValueObj.action.actionType;
//Get object Location
pageObject['x'] = iValueObj.location.x;
pageObject['y'] = iValueObj.location.y;
pageObject['width'] = iValueObj.location.width;
pageObject['height'] = iValueObj.location.height;
pageObject['visible'] = true;
//Get object Location
pageObject['x'] = iValueObj.location.x;
pageObject['y'] = iValueObj.location.y;
pageObject['width'] = iValueObj.location.width;
pageObject['height'] = iValueObj.location.height;
pageObject['visible'] = true;
//詳細ログ用
//詳細ログ用
try{
pageObject["objectId"] = iValueObj.action.objectId;
}catch(e){
......@@ -846,11 +846,11 @@ CONTENTVIEW_GETDATA.getMediaType12 = function(iValueObj) {
}
if(iValueObj.action.actionType == 14){
var resourceId = iValueObj.mediaInfo.resourceId;
var resourceId = iValueObj.mediaInfo.resourceId;
pageObject["imageUrl"] = 'img/test.png';
pageObject["imageUrl"] = 'img/test.png';
pageObject["replyLimit"] = iValueObj.action.replyLimit;
pageObject["replyLimit"] = iValueObj.action.replyLimit;
pageObject["fullScreen"] = iValueObj.action.fullScreen;
pageObject["saveAs"] = iValueObj.action.saveAs;
pageObject["resourceId"] = resourceId;
......@@ -865,21 +865,21 @@ CONTENTVIEW_GETDATA.getMediaType12 = function(iValueObj) {
CONTENTVIEW_GETDATA.getMediaType13 = function(iValueObj) {
var pageObject = [];
var pageObject = [];
//Get object Info
pageObject['mediaType'] = iValueObj.mediaType;
pageObject['id'] = "MediaType12_" + iValueObj.mediaInfo.resourceId;
pageObject['actionType'] = iValueObj.action.actionType;
//Get object Info
pageObject['mediaType'] = iValueObj.mediaType;
pageObject['id'] = "MediaType12_" + iValueObj.mediaInfo.resourceId;
pageObject['actionType'] = iValueObj.action.actionType;
//Get object Location
pageObject['x'] = iValueObj.location.x;
pageObject['y'] = iValueObj.location.y;
pageObject['width'] = iValueObj.location.width;
pageObject['height'] = iValueObj.location.height;
pageObject['visible'] = true;
//Get object Location
pageObject['x'] = iValueObj.location.x;
pageObject['y'] = iValueObj.location.y;
pageObject['width'] = iValueObj.location.width;
pageObject['height'] = iValueObj.location.height;
pageObject['visible'] = true;
//詳細ログ用
//詳細ログ用
try{
pageObject["objectId"] = iValueObj.action.objectId;
}catch(e){
......@@ -887,11 +887,11 @@ CONTENTVIEW_GETDATA.getMediaType13 = function(iValueObj) {
}
if(iValueObj.action.actionType == 15){
var resourceId = iValueObj.mediaInfo.resourceId;
var resourceId = iValueObj.mediaInfo.resourceId;
pageObject["imageUrl"] = 'img/quize.png';
pageObject["imageUrl"] = 'img/quize.png';
pageObject["replyLimit"] = iValueObj.action.replyLimit;
pageObject["replyLimit"] = iValueObj.action.replyLimit;
pageObject["fullScreen"] = iValueObj.action.fullScreen;
pageObject["saveAs"] = iValueObj.action.saveAs;
pageObject["resourceId"] = resourceId;
......@@ -981,7 +981,7 @@ CONTENTVIEW_GETDATA.getDataLoaded = function(data) {
/* insert if not exist */
if (isExist == false) {
CONTENTVIEW_GENERAL.arrThumbnailsLoaded.push(data[i]);
CONTENTVIEW_GENERAL.arrThumbnailsLoaded.push(data[i]);
}
}
......@@ -1018,14 +1018,14 @@ CONTENTVIEW_GETDATA.getBookmarklist = function(pos) {
$('#bookmarkBoxHdBM').html('<a id="bookmarkClosing" class="delete" > </a>');
//$("#bookmarkClosing").click(CONTENTVIEW_EVENTS.closeBookmarkBox);
$("#bookmarkClosing").on({
'click touchend': function(ev){
CONTENTVIEW_EVENTS.closeBookmarkBox(ev);
'click touchend': function(ev){
CONTENTVIEW_EVENTS.closeBookmarkBox(ev);
return false;
},
'touchstart touchmove': function(){
//これを入れないと次にダイアログを開くと表示位置が大きくズレる
return false;
}
},
'touchstart touchmove': function(){
//これを入れないと次にダイアログを開くと表示位置が大きくズレる
return false;
}
});
$('#bookmarkBoxHdBM').append(I18N.i18nText('txtShioriCtnLs'));
......@@ -1039,7 +1039,7 @@ CONTENTVIEW_GETDATA.getBookmarklist = function(pos) {
$("#divListBookmark").offset({ left: pos[0], top: (pos[1] + $('#bookmarkBoxHdBM').height()) });
}
else {
CONTENTVIEW.handleAPIWebContentPage(CONTENTVIEW_GENERAL.dataWebContentPage, pos)
CONTENTVIEW.handleAPIWebContentPage(CONTENTVIEW_GENERAL.dataWebContentPage, pos)
}
};
......@@ -1064,14 +1064,14 @@ CONTENTVIEW_GETDATA.getPageIndexJson = function(pos) {
//$("#indexClosing").click(CONTENTVIEW_EVENTS.closeIndexBox);
$("#indexClosing").on({
'click touchend': function(ev){
CONTENTVIEW_EVENTS.closeIndexBox(ev);
return false;
},
'touchstart touchmove': function(){
//これを入れないと次にダイアログを開くと表示位置が大きくズレる
return false;
}
'click touchend': function(ev){
CONTENTVIEW_EVENTS.closeIndexBox(ev);
return false;
},
'touchstart touchmove': function(){
//これを入れないと次にダイアログを開くと表示位置が大きくズレる
return false;
}
});
$('#indexBoxHdIndex').append(I18N.i18nText('txtIndex'));
......@@ -1132,14 +1132,14 @@ CONTENTVIEW_GETDATA.getPageIndexJson = function(pos) {
//$("#indexClosing").click(CONTENTVIEW_EVENTS.closeIndexBox);
$("#indexClosing").on({
'click touchend': function(ev){
CONTENTVIEW_EVENTS.closeIndexBox(ev);
'click touchend': function(ev){
CONTENTVIEW_EVENTS.closeIndexBox(ev);
return false;
},
'touchstart touchmove': function(){
//これを入れないと次にダイアログを開くと表示位置が大きくズレる
return false;
},
'touchstart touchmove': function(){
//これを入れないと次にダイアログを開くと表示位置が大きくズレる
return false;
}
}
});
$('#indexBoxHdIndex').append(I18N.i18nText('txtIndex'));
......@@ -1186,7 +1186,7 @@ CONTENTVIEW_GETDATA.getText = function() {
CONTENTVIEW_GETDATA.getContentID = function() {
/* init contentID */
if (ClientData.common_preContentId()) {
CONTENTVIEW_GENERAL.contentID = ClientData.common_preContentId();
CONTENTVIEW_GENERAL.contentID = ClientData.common_preContentId();
ClientData.common_preContentId(null);
} else if (ClientData.IsJumpBack() == true) {
var dataJump = ClientData.JumpQueue();
......@@ -1194,11 +1194,11 @@ CONTENTVIEW_GETDATA.getContentID = function() {
//ストリーミングならデバイスに通知
if(ClientData.isStreamingMode()){
CONTENTVIEW_STREAMING.moveContent(CONTENTVIEW_GENERAL.contentID);
CONTENTVIEW_STREAMING.moveContent(CONTENTVIEW_GENERAL.contentID);
}
} else {
CONTENTVIEW_GENERAL.contentID = ClientData.contentInfo_contentId();
CONTENTVIEW_GENERAL.contentID = ClientData.contentInfo_contentId();
}
};
......@@ -1213,8 +1213,8 @@ CONTENTVIEW_GETDATA.getContentInfoTypeImage = function(){
var resourceUrl = CONTENTVIEW.downloadResourceById(CONTENTVIEW_GENERAL.contentID);
CONTENTVIEW_GENERAL.resourceImage.onload = function(){
CONTENTVIEW_GENERAL.widthContentImage = CONTENTVIEW_GENERAL.resourceImage.width;
CONTENTVIEW_GENERAL.heightContentImage = CONTENTVIEW_GENERAL.resourceImage.height;
CONTENTVIEW_GENERAL.widthContentImage = CONTENTVIEW_GENERAL.resourceImage.width;
CONTENTVIEW_GENERAL.heightContentImage = CONTENTVIEW_GENERAL.resourceImage.height;
CONTENTVIEW_GETDATA.getContent().setPageImages(1, resourceUrl).setUpPage(0);
CONTENTVIEW.handleSliderBar();
......@@ -1272,10 +1272,10 @@ CONTENTVIEW_GETDATA.getContentInfoTypeImage = function(){
if (COMMON.isTouchDevice() == true) {
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid()) {
CONTENTVIEW_GENERAL.standardRatio = document.documentElement.clientWidth / window.innerWidth;
CONTENTVIEW_GENERAL.standardRatio = document.documentElement.clientWidth / window.innerWidth;
ZOOM_DETECTOR.startDetectZoom({ time: 500,
callbackFunction: function (oldRatio, newRatio, oldW, oldH, newW, newH) {
CONTENTVIEW_GENERAL.currentRatio = newRatio;
CONTENTVIEW_GENERAL.currentRatio = newRatio;
}
});
......@@ -1302,9 +1302,9 @@ CONTENTVIEW_GETDATA.getContentDataForImageType = function(){
};
CONTENTVIEW_CALLAPI.abapi('webGetContent', params, 'GET', function (data) {
CONTENTVIEW_GENERAL.imageTypeData = data.contentData;
CONTENTVIEW_GENERAL.imageTypeData = data.contentData;
//Set default page No to image Type
CONTENTVIEW_GENERAL.imageTypeData["pageNo"] = 1;
CONTENTVIEW_GENERAL.imageTypeData["pageNo"] = 1;
document.title = data.contentData.contentName + ' | ' + I18N.i18nText('sysAppTitle');
});
......@@ -1318,7 +1318,7 @@ CONTENTVIEW_GETDATA.getContent = function() {
/* get all memo on page */
CONTENTVIEW_GETDATA.getAllMemoOfPage = function() {
if (ClientData.IsDisplayMemo() == true) {
CONTENTVIEW_CREATEOBJECT.memoObjects = [];
CONTENTVIEW_CREATEOBJECT.memoObjects = [];
/*get data memo */
var memoData = ClientData.MemoData();
......@@ -1353,11 +1353,11 @@ CONTENTVIEW_GETDATA.getAllMemoOfPage = function() {
};
CONTENTVIEW_GETDATA.getPosVideo = function(px, py, width, height, scale) {
CONTENTVIEW_GENERAL.pxVideo = px;
CONTENTVIEW_GENERAL.pyVideo = py;
CONTENTVIEW_GENERAL.wVideo = width;
CONTENTVIEW_GENERAL.hVideo = height;
CONTENTVIEW_GENERAL.videoScale = scale;
CONTENTVIEW_GENERAL.pxVideo = px;
CONTENTVIEW_GENERAL.pyVideo = py;
CONTENTVIEW_GENERAL.wVideo = width;
CONTENTVIEW_GENERAL.hVideo = height;
CONTENTVIEW_GENERAL.videoScale = scale;
};
//Start Function: No.4 - Editor : Long - Summary : Render Next Page Content
......@@ -1377,21 +1377,21 @@ CONTENTVIEW_GETDATA.renderNextPage = function(){
function (data) {
CONTENTVIEW_GENERAL.nextPageImage = data;
CONTENTVIEW_GENERAL.nextContent.setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.nextPageImage)
CONTENTVIEW_GENERAL.nextContent.setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.nextPageImage)
.setPageObjects(CONTENTVIEW_GENERAL.nextPageObjects)
.nextPage();
},
function (xmlHttpRequest, txtStatus, errorThrown) {
CONTENTVIEW.showErrorScreen();
}
},
function (xmlHttpRequest, txtStatus, errorThrown) {
CONTENTVIEW.showErrorScreen();
}
);
}
//Start Function : No.12 - Editor : Long - Date : 08/28/2013 - Summary : Render next page content image the same with the current one
else if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW_GENERAL.nextPageImage = CONTENTVIEW_GENERAL.pageImages;
CONTENTVIEW_GENERAL.nextContent.setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.nextPageImage)
CONTENTVIEW_GENERAL.nextPageImage = CONTENTVIEW_GENERAL.pageImages;
CONTENTVIEW_GENERAL.nextContent.setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.nextPageImage)
.setPageObjects(CONTENTVIEW_GENERAL.nextPageObjects)
.nextPage();
}
......@@ -1416,16 +1416,16 @@ CONTENTVIEW_GETDATA.renderPrevPage = function(){
CONTENTVIEW_GENERAL.prevContent.setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.prevPageImage)
.setPageObjects(CONTENTVIEW_GENERAL.prevPageObjects)
.previousPage();
},
function (xmlHttpRequest, txtStatus, errorThrown) {
CONTENTVIEW.showErrorScreen();
}
);
},
function (xmlHttpRequest, txtStatus, errorThrown) {
CONTENTVIEW.showErrorScreen();
}
);
}
else if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_NoFile){
CONTENTVIEW_GENERAL.prevPageImage = CONTENTVIEW_GENERAL.pageImages;
CONTENTVIEW_GENERAL.prevContent.setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.prevPageImage)
CONTENTVIEW_GENERAL.prevPageImage = CONTENTVIEW_GENERAL.pageImages;
CONTENTVIEW_GENERAL.prevContent.setPageImages(CONTENTVIEW_GENERAL.totalPage, CONTENTVIEW_GENERAL.prevPageImage)
.setPageObjects(CONTENTVIEW_GENERAL.prevPageObjects)
.previousPage();
}
......@@ -1434,7 +1434,7 @@ CONTENTVIEW_GETDATA.renderPrevPage = function(){
//Get next page objects by page index
CONTENTVIEW_GETDATA.getNextPageObjectsByPageIndex = function(contentData, nIndexPage) {
CONTENTVIEW_GENERAL.nextPageObjects = [];
CONTENTVIEW_GENERAL.nextPageObjects = [];
var currentPageObjects;
for (var nIndex = 0; nIndex < contentData.length; nIndex++) {
if (contentData[nIndex].page == nIndexPage) {
......@@ -1458,8 +1458,8 @@ CONTENTVIEW_GETDATA.getNextPageObjectsByPageIndex = function(contentData, nIndex
/*get object page*/
if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject);
/*add object to page */
CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType2(currentPageObjects[nIndex]);
/*add object to page */
......@@ -1497,14 +1497,14 @@ CONTENTVIEW_GETDATA.getNextPageObjectsByPageIndex = function(contentData, nIndex
/*add object to page */
CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 12) { /*mediaType = 12*/
var pageObject = CONTENTVIEW_GETDATA.getMediaType12(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 13) { /*mediaType = 12*/
var pageObject = CONTENTVIEW_GETDATA.getMediaType13(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject);
}
var pageObject = CONTENTVIEW_GETDATA.getMediaType12(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 13) { /*mediaType = 12*/
var pageObject = CONTENTVIEW_GETDATA.getMediaType13(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject);
}
}
}
......@@ -1513,7 +1513,7 @@ CONTENTVIEW_GETDATA.getNextPageObjectsByPageIndex = function(contentData, nIndex
//Get prev page objects by page index
CONTENTVIEW_GETDATA.getPrevPageObjectsByPageIndex = function(contentData, nIndexPage) {
CONTENTVIEW_GENERAL.prevPageObjects = [];
CONTENTVIEW_GENERAL.prevPageObjects = [];
var currentPageObjects;
for (var nIndex = 0; nIndex < contentData.length; nIndex++) {
......@@ -1537,8 +1537,8 @@ CONTENTVIEW_GETDATA.getPrevPageObjectsByPageIndex = function(contentData, nIndex
/*get object page*/
if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject);
/*add object to page */
CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType2(currentPageObjects[nIndex]);
/*add object to page */
......@@ -1576,14 +1576,14 @@ CONTENTVIEW_GETDATA.getPrevPageObjectsByPageIndex = function(contentData, nIndex
/*add object to page */
CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 12) { /*mediaType = 12*/
var pageObject = CONTENTVIEW_GETDATA.getMediaType12(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 13) { /*mediaType = 12*/
var pageObject = CONTENTVIEW_GETDATA.getMediaType13(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject);
}
var pageObject = CONTENTVIEW_GETDATA.getMediaType12(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 13) { /*mediaType = 12*/
var pageObject = CONTENTVIEW_GETDATA.getMediaType13(currentPageObjects[nIndex]);
/*add object to page */
CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject);
}
}
}
......@@ -1682,7 +1682,7 @@ CONTENTVIEW_GETDATA.assignCurrentContentPage = function(nav){
if(nav == 1){
CONTENTVIEW_GENERAL.prevPageImage = CONTENTVIEW_GENERAL.pageImages;
CONTENTVIEW_GENERAL.prevPageImage = CONTENTVIEW_GENERAL.pageImages;
CONTENTVIEW_GENERAL.pageImages = CONTENTVIEW_GENERAL.nextPageImage;
CONTENTVIEW_GENERAL.prevContent.currentPage = CONTENTVIEW.content.currentPage;
......@@ -1702,7 +1702,7 @@ CONTENTVIEW_GETDATA.assignCurrentContentPage = function(nav){
}
else{
CONTENTVIEW_GENERAL.nextPageImage = CONTENTVIEW_GENERAL.pageImages;
CONTENTVIEW_GENERAL.nextPageImage = CONTENTVIEW_GENERAL.pageImages;
CONTENTVIEW_GENERAL.pageImages = CONTENTVIEW_GENERAL.prevPageImage;
CONTENTVIEW_GENERAL.nextContent.currentPage = CONTENTVIEW.content.currentPage;
......@@ -1733,7 +1733,7 @@ CONTENTVIEW_GETDATA.correctCanvasPosition = function(){
// Set default value for moving3D object to prevent other object fired when
//hold on 3d object and move next or prev page.
CONTENTVIEW_EVENTS._3dAnimate = false;
CONTENTVIEW_EVENTS._3dAnimate = false;
if(CONTENTVIEW_GENERAL.animateType == CONTENTVIEW_GENERAL.animateTypeKeys.Type_Slide){
$('#canvasWrapper').css("left",'0px');
......@@ -1754,8 +1754,8 @@ CONTENTVIEW_GETDATA.correctCanvasPosition = function(){
//Get Page Transition configuration
CONTENTVIEW_GETDATA.getPageTransitionConfig = function(){
CONTENTVIEW_GENERAL.animateType = ClientData.userOpt_pageTransition();
CONTENTVIEW_GENERAL.animatePeriod = eval(ClientData.userOpt_pageTransitionPeriod()) * 1000;
CONTENTVIEW_GENERAL.animateType = ClientData.userOpt_pageTransition();
CONTENTVIEW_GENERAL.animatePeriod = eval(ClientData.userOpt_pageTransitionPeriod()) * 1000;
};
//End Function: No.4 - Editor : Long - Summary : Render Next Page Content
......
......@@ -15,6 +15,11 @@ CONTENTVIEW_GETITS.ready = function(){
//ストアリンク作成
$('#moveStore').click(CONTENTVIEW_GETITS.moveStore);
CONTENTVIEW_INITOBJECT.clearViewerComponent();
//CONTENTVIEW.cssInit();
//$("#viewer").show();
CONTENTVIEW.ready();
};
CONTENTVIEW_GETITS.moveStore = function(){
......
......@@ -8,12 +8,13 @@ CONTENTVIEW_OPENURI.ready = function(){
$("#viewer").load("./inc_contentview.html?__UPDATEID__", function (myData, myStatus, xhr){
//読み込み完了時の処理
I18N.i18nReplaceText();
setTimeout(function(){
CONTENTVIEW_OPENURI.showContentView();
}, 200);
});
setTimeout(function(){
CONTENTVIEW_OPENURI.showContentView();
}, 200);
};
CONTENTVIEW_OPENURI.showContentView = function(){
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -66,11 +66,31 @@ SHARE.openContentShare = function() {
if($('#dlgContentShare_maxDlCount').val() != ""){
$('#dlgContentShare_maxDlCount').val("");
}
//bughuntでクリックイベントが溜まる問題の対応
//$("#dlgContentShare_close").click(SHARE.dlgContentShare_close_Click);
//$("#dlgContentShare_ok").click(SHARE.dlgContentShare_ok_Click);
$("#dlgContentShare_close").on({
'click touchend': function(ev){
SHARE.dlgContentShare_close_Click(ev);
return false;
},
'touchstart touchmove': function(){
return false;
}
});
$("#dlgContentShare_ok").on({
'click touchend': function(ev){
SHARE.dlgContentShare_ok_Click(ev);
return false;
},
'touchstart touchmove': function(){
return false;
}
});
$("#dlgContentShare_close").click(SHARE.dlgContentShare_close_Click);
$("#dlgContentShare_ok").click(SHARE.dlgContentShare_ok_Click);
//COMMON.lockLayout();
COMMON.lockLayout();
$("#dlgContentShare").css('z-index', 102);
$("#dlgContentShare").show();
......
......@@ -38,79 +38,79 @@
<![endif]-->
<script type="text/javascript">
$(document).ready(function(){
LOGIN.ready();
});
$(document).ready(function(){
LOGIN.ready();
});
</script>
</head>
<body id="login">
<div id="anonymous">
<img src="./abvw/img/login/logo_login.png" width="200" class="clearboth"/>
<img src="./abvw/img/login/logo_login.png" width="200" class="clearboth"/>
</div>
<div id="normalUser">
<!--
<div id="loader"><img src="./abvw/img/login/loading_icon.gif" width="200" height="200"></div>
<div id="fade"></div>
-->
<div class="wrapper">
<div id="main-ws">
<ul class="floatR" id="menu-language"><li class="language"><a id="language-ja"><img src="./abvw/img/common/flg_jpn.png" width="29" height="20"></a></li><li class="language"><a id="language-en"><img src="./abvw/img/common/flg_usa.png" width="29" height="20"></a></li><li class="language"><a id="language-ko"><img src="./abvw/img/common/flg_kor.png" width="29" height="20"></a></li></ul>
<article>
<img src="./abvw/img/login/logo_login.png" width="200" class="clearboth" id="logologin">
<section id="formlogin" style="display:none;">
<table width="440" border="0" cellspacing="0">
<tr>
<th width="33%" class="lang" lang="txtLoginAccPath">アカウントパス</th>
<td width="67%"><input type="text" id="txtAccPath" maxlength="60" /></td>
</tr>
<tr>
<th class="lang" lang="txtLoginId">ログインID</th>
<td><input type="text" id="txtAccId" maxlength="54" /></td>
</tr>
<tr>
<th class="lang" lang="txtLoginPwd">パスワード</th>
<td><input type="password" id="txtPassword"/></td>
</tr>
</table>
<p class="error lang" id="main-error-message" style="display:none;">パスワードまたはIDに誤りがあります</p>
<p class="memory"><input type="checkbox" id="chkRemember" /><label class="lang" lang="txtLoginPwdRbr" for="chkRemember">アカウントパスとログインIDを記憶する</label></p>
<a class="loginbtn lang" id="btnLogin" lang="dspLogin">ログイン</a>
</section>
</article>
</div>
</div>
<footer>
<div class="border">
<div class="cnt_footer">
COPYRIGHT &copy; 2014 AGENTEC Co., Ltd. ALL RIGHTS RESERVED.
</div>
</div>
</footer>
<!--
<div id="loader"><img src="./abvw/img/login/loading_icon.gif" width="200" height="200"></div>
<div id="fade"></div>
-->
<div class="wrapper">
<div id="main-ws">
<ul class="floatR" id="menu-language"><li class="language"><a id="language-ja"><img src="./abvw/img/common/flg_jpn.png" width="29" height="20"></a></li><li class="language"><a id="language-en"><img src="./abvw/img/common/flg_usa.png" width="29" height="20"></a></li><li class="language"><a id="language-ko"><img src="./abvw/img/common/flg_kor.png" width="29" height="20"></a></li></ul>
<article>
<img src="./abvw/img/login/logo_login.png" width="200" class="clearboth" id="logologin">
<section id="formlogin" style="display:none;">
<table width="440" border="0" cellspacing="0">
<tr>
<th width="33%" class="lang" lang="txtLoginAccPath">アカウントパス</th>
<td width="67%"><input type="text" id="txtAccPath" maxlength="60" /></td>
</tr>
<tr>
<th class="lang" lang="txtLoginId">ログインID</th>
<td><input type="text" id="txtAccId" maxlength="54" /></td>
</tr>
<tr>
<th class="lang" lang="txtLoginPwd">パスワード</th>
<td><input type="password" id="txtPassword"/></td>
</tr>
</table>
<p class="error lang" id="main-error-message" style="display:none;">パスワードまたはIDに誤りがあります</p>
<p class="memory"><input type="checkbox" id="chkRemember" /><label class="lang" lang="txtLoginPwdRbr" for="chkRemember">アカウントパスとログインIDを記憶する</label></p>
<a class="loginbtn lang" id="btnLogin" lang="dspLogin">ログイン</a>
</section>
</article>
</div>
</div>
<footer>
<div class="border">
<div class="cnt_footer">
COPYRIGHT &copy; 2014 AGENTEC Co., Ltd. ALL RIGHTS RESERVED.
</div>
</div>
</footer>
</div>
<section id="main-password-change" class="sectionchangepassword">
<h1 class="title lang" lang="msgChangePassword"><!--パスワードを変更してください。--></h1>
<span id="dialog-error-message" class="alertTxtDialog lang"></span>
<dl>
<dt class="lang" lang="txtPwdCurr"><!--旧パスワード:--></dt>
<dd><input type="password" id="txtCurrentPass" maxlength="16" /></dd>
</dl>
<dl>
<dt class="lang" lang="txtPwdNew"><!--旧パスワード:--></dt>
<dd><input type="password" id="txtNewPass" maxlength="16" /></dd>
</dl>
<dl>
<dt class="lang" lang="txtPwdNewRe"><!--新パスワード(確認):--></dt>
<dd><input type="password" id="txtConfirmNew" maxlength="16" /></dd>
</dl>
<p class="lang" lang="txtPwdRemind" id="txtPwdRemind"><!--※スキップを選択すると、30日間このメッセージは表示されません--></p>
<p class="loginbtn">
<a class="skip lang" id="btnSkip" lang="dspSkip"><!--スキップ--></a>
<a class="change lang" id="btnChange" lang="dspChange"><!--変更--></a>
</p>
<h1 class="title lang" lang="msgChangePassword"><!--パスワードを変更してください。--></h1>
<span id="dialog-error-message" class="alertTxtDialog lang"></span>
<dl>
<dt class="lang" lang="txtPwdCurr"><!--旧パスワード:--></dt>
<dd><input type="password" id="txtCurrentPass" maxlength="16" /></dd>
</dl>
<dl>
<dt class="lang" lang="txtPwdNew"><!--旧パスワード:--></dt>
<dd><input type="password" id="txtNewPass" maxlength="16" /></dd>
</dl>
<dl>
<dt class="lang" lang="txtPwdNewRe"><!--新パスワード(確認):--></dt>
<dd><input type="password" id="txtConfirmNew" maxlength="16" /></dd>
</dl>
<p class="lang" lang="txtPwdRemind" id="txtPwdRemind"><!--※スキップを選択すると、30日間このメッセージは表示されません--></p>
<p class="loginbtn">
<a class="skip lang" id="btnSkip" lang="dspSkip"><!--スキップ--></a>
<a class="change lang" id="btnChange" lang="dspChange"><!--変更--></a>
</p>
</section>
</body>
......
#!perl
#
use strict;
use Pack;
use vars qw/$VERSION/;
$VERSION = '1.01b';
my $Version = "v$VERSION\[p$Pack::VERSION-pm$Pack::PM_VERSION\]";
if ((!$ARGV[0]) || ($ARGV[0] ne '-o')) {
print "$0 $Version\n";
print " This program generates an html page containing examples of packed Javascript\n";
print "\tSyntax: $0 -o > testpage.htm\n";
exit(1);
}
# Get the javascript to be packed
my $libraryscript = getJSLibrary(); # eg a library - could be from an external file
my @blockscripts = getJSBlocks(); # eg local blocks specific to this page
# Set pack options (extend with cgi interface etc)
my $encoding = 62;
my $fastdecoding = 1;
my $specialcharacters = 1;
# Pack the source scripts
my $packedlibrary = &Pack::pack($libraryscript, $encoding, $fastdecoding, $specialcharacters);
my @packedblocks = ();
for (my $i=0; $i< scalar(@blockscripts); $i++) { # Pack each indexed block of js code
$packedblocks[$i] = &Pack::pack($blockscripts[$i], $encoding, $fastdecoding, $specialcharacters);
}
# Output the html page containing the packed scripts (passed by reference in this case)
#print "Content-type: text/html\n\n";
printHTMLPage(\$packedlibrary,\@packedblocks);
##########
# End #
exit(0); #
##########
################
# Sub-routines #
################
#############
# HTML PAGE #
#############
sub printHTMLPage {
my ($libraryref,$blocksref) = @_; # References to packed scripts - need to be de-referenced in interpolations
my ($HTML) = <<"END_HTML";
<html><head><title>Packed script example page</title>
<!-- Here is where the library script is inserted -->
<script language="JavaScript">$$libraryref</script>
<!-->
</head><body>
<center>
<h1>Packed Javascript</h1>
<p>
Javascript contained within this page has been packed using using <br>
Packer [$0] $Version<br>
a JavaScript Compressor/Obfuscator developed by Dean Edwards <<a href="http://dean.edwards.name/">http://dean.edwards.name/</a>><br>
and ported to Perl by Rob Seiler, ELR Software Pty Ltd <<a href="http://www.elr.com.au/">http://www.elr.com.au</a>><br>
Copyright 2005. License <a href="http://creativecommons.org/licenses/LGPL/2.1/">http://creativecommons.org/licenses/LGPL/2.1/</a>>
</p>
</center>
<h2>Profile of your Browser</h2>
<p>Here are the results of running the packed JavaScript code in the browser you are using.
If you are seeing bowser vendor, version, and operating system data, the packed scripts are functioning properly.</p>
<!-- Here is where the local block scripts are inserted -->
<h3>Bascic Data</h3> <script language="JavaScript">$$blocksref[0]</script>
<h3>Version Number</h3> <script language="JavaScript">$$blocksref[1]</script>
<h3>Browser Version</h3> <script language="JavaScript">$$blocksref[2]</script>
<h3>JavaScript Version</h3><script language="JavaScript">$$blocksref[3]</script>
<h3>OS</h3> <script language="JavaScript">$$blocksref[4]</script>
<!-->
</body></html>
END_HTML
print $HTML;
}
#############################
# Javascript Source Scripts #
#############################
# Below are our example Javascript code blocks
sub getJSLibrary {
my ($jscript) = <<'END_JSLIBRARY';
// Ultimate client-side JavaScript client sniff.
// (C) Netscape Communications 1999. Permission granted to reuse and distribute.
// Revised 7 May 99 to add is.nav5up and is.ie5up (see below). (see below).
// Everything you always wanted to know about your JavaScript client
// but were afraid to ask ... "Is" is the constructor function for "is" object,
// which has properties indicating:
// (1) browser vendor:
// is.nav, is.ie, is.opera
// (2) browser version number:
// is.major (integer indicating major version number: 2, 3, 4 ...)
// is.minor (float indicating full version number: 2.02, 3.01, 4.04 ...)
// (3) browser vendor AND major version number
// is.nav2, is.nav3, is.nav4, is.nav4up, is.ie3, is.ie4, is.ie4up, is.ie5, is.ie5up
// (4) JavaScript version number:
// is.js (float indicating full JavaScript version number: 1, 1.1, 1.2 ...)
// (5) OS platform and version:
// is.win, is.win16, is.win32, is.win31, is.win95, is.winnt, is.win98
// is.os2
// is.mac, is.mac68k, is.macppc
// is.unix
// is.sun, is.sun4, is.sun5, is.suni86
// is.irix, is.irix5, is.irix6
// is.hpux, is.hpux9, is.hpux10
// is.aix, is.aix1, is.aix2, is.aix3, is.aix4
// is.linux, is.sco, is.unixware, is.mpras, is.reliant
// is.dec, is.sinix, is.freebsd, is.bsd
// is.vms
//
// See http://www.it97.de/JavaScript/JS_tutorial/bstat/navobj.html and
// http://www.it97.de/JavaScript/JS_tutorial/bstat/Browseraol.html
// for detailed lists of userAgent strings.
//
// Note: you don't want your Nav4 or IE4 code to "turn off" or
// stop working when Nav5 and IE5 (or later) are released, so
// in conditional code forks, use is.nav4up ("Nav4 or greater")
// and is.ie4up ("IE4 or greater") instead of is.nav4 or is.ie4
// to check version in code which you want to work on future
// versions.
function Is ()
{ // convert all characters to lowercase to simplify testing
var agt=navigator.userAgent.toLowerCase();
// *** BROWSER VERSION ***
// Note: On IE5, these return 4, so use is.ie5up to detect IE5.
this.major = parseInt(navigator.appVersion);
this.minor = parseFloat(navigator.appVersion);
this.nav = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
&& (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
&& (agt.indexOf('webtv')==-1));
this.nav2 = (this.nav && (this.major == 2));
this.nav3 = (this.nav && (this.major == 3));
this.nav4 = (this.nav && (this.major == 4));
this.nav4up = (this.nav && (this.major >= 4));
this.navonly = (this.nav && ((agt.indexOf(";nav") != -1) ||
(agt.indexOf("; nav") != -1)) );
this.nav5 = (this.nav && (this.major == 5));
this.nav5up = (this.nav && (this.major >= 5));
this.ie = (agt.indexOf("msie") != -1);
this.ie3 = (this.ie && (this.major < 4));
this.ie4 = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.0")==-1) );
this.ie4up = (this.ie && (this.major >= 4));
this.ie5 = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.0")!=-1) );
this.ie5up = (this.ie && !this.ie3 && !this.ie4);
this.aol = (agt.indexOf("aol") != -1);
this.aol3 = (this.aol && this.ie3);
this.aol4 = (this.aol && this.ie4);
this.opera = (agt.indexOf("opera") != -1);
this.webtv = (agt.indexOf("webtv") != -1);
// *** JAVASCRIPT VERSION CHECK ***
// Useful to workaround Nav3 bug in which Nav3
// loads <SCRIPT LANGUAGE="JavaScript1.2">
if (this.nav2 || this.ie3) this.js = 1.0;
else if (this.nav3 || this.opera) this.js = 1.1;
else if ((this.nav4 && (this.minor <= 4.05)) || this.ie4) this.js = 1.2;
else if ((this.nav4 && (this.minor > 4.05)) || this.ie5) this.js = 1.3;
else if (this.nav5) this.js = 1.4;
// NOTE: In the future, update this code when newer versions of JS
// are released. For now, we try to provide some upward compatibility
// so that future versions of Nav and IE will show they are at
// *least* JS 1.x capable. Always check for JS version compatibility
// with > or >=.
else if (this.nav && (this.major > 5)) this.js = 1.4;
else if (this.ie && (this.major > 5)) this.js = 1.3;
// HACK: no idea for other browsers; always check for JS version with > or >=
else this.js = 0.0;
// *** PLATFORM ***
this.win = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
// NOTE: On Opera 3.0, the userAgent string includes "Windows 95/NT4" on all
// Win32, so you can't distinguish between Win95 and WinNT.
this.win95 = ((agt.indexOf("win95")!=-1) || (agt.indexOf("windows 95")!=-1));
// is this a 16 bit compiled version?
this.win16 = ((agt.indexOf("win16")!=-1) ||
(agt.indexOf("16bit")!=-1) || (agt.indexOf("windows 3.1")!=-1) ||
(agt.indexOf("windows 16-bit")!=-1) );
this.win31 = ((agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) ||
(agt.indexOf("windows 16-bit")!=-1));
// NOTE: Reliable detection of Win98 may not be possible. It appears that:
// - On Nav 4.x and before you'll get plain "Windows" in userAgent.
// - On Mercury client, the 32-bit version will return "Win98", but
// the 16-bit version running on Win98 will still return "Win95".
this.win98 = ((agt.indexOf("win98")!=-1) || (agt.indexOf("windows 98")!=-1));
this.winnt = ((agt.indexOf("winnt")!=-1) || (agt.indexOf("windows nt")!=-1));
this.win32 = ( this.win95 || this.winnt || this.win98 ||
((this.major >= 4) && (navigator.platform == "Win32")) ||
(agt.indexOf("win32")!=-1) || (agt.indexOf("32bit")!=-1) );
this.os2 = ((agt.indexOf("os/2")!=-1) ||
(navigator.appVersion.indexOf("OS/2")!=-1) ||
(agt.indexOf("ibm-webexplorer")!=-1));
this.mac = (agt.indexOf("mac")!=-1);
this.mac68k = (this.mac && ((agt.indexOf("68k")!=-1) ||
(agt.indexOf("68000")!=-1)));
this.macppc = (this.mac && ((agt.indexOf("ppc")!=-1) ||
(agt.indexOf("powerpc")!=-1)));
this.sun = (agt.indexOf("sunos")!=-1);
this.sun4 = (agt.indexOf("sunos 4")!=-1);
this.sun5 = (agt.indexOf("sunos 5")!=-1);
this.suni86= (this.sun && (agt.indexOf("i86")!=-1));
this.irix = (agt.indexOf("irix") !=-1); // SGI
this.irix5 = (agt.indexOf("irix 5") !=-1);
this.irix6 = ((agt.indexOf("irix 6") !=-1) || (agt.indexOf("irix6") !=-1));
this.hpux = (agt.indexOf("hp-ux")!=-1);
this.hpux9 = (this.hpux && (agt.indexOf("09.")!=-1));
this.hpux10= (this.hpux && (agt.indexOf("10.")!=-1));
this.aix = (agt.indexOf("aix") !=-1); // IBM
this.aix1 = (agt.indexOf("aix 1") !=-1);
this.aix2 = (agt.indexOf("aix 2") !=-1);
this.aix3 = (agt.indexOf("aix 3") !=-1);
this.aix4 = (agt.indexOf("aix 4") !=-1);
this.linux = (agt.indexOf("inux")!=-1);
this.sco = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1);
this.unixware = (agt.indexOf("unix_system_v")!=-1);
this.mpras = (agt.indexOf("ncr")!=-1);
this.reliant = (agt.indexOf("reliantunix")!=-1);
this.dec = ((agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) ||
(agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) ||
(agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1));
this.sinix = (agt.indexOf("sinix")!=-1);
this.freebsd = (agt.indexOf("freebsd")!=-1);
this.bsd = (agt.indexOf("bsd")!=-1);
this.unix = ((agt.indexOf("x11")!=-1) || this.sun || this.irix || this.hpux ||
this.sco ||this.unixware || this.mpras || this.reliant ||
this.dec || this.sinix || this.aix || this.linux || this.bsd || this.freebsd);
this.vms = ((agt.indexOf("vax")!=-1) || (agt.indexOf("openvms")!=-1));
}
var is;
var isIE3Mac = false;
// this section is designed specifically for IE3 for the Mac
if ((navigator.appVersion.indexOf("Mac")!=-1) && (navigator.userAgent.indexOf("MSIE")!=-1) &&
(parseInt(navigator.appVersion)==3))
isIE3Mac = true;
else is = new Is();
END_JSLIBRARY
return $jscript; # Return the JS library code block
}
sub getJSBlocks {
my @jscript = ();
($jscript[0]) = <<'END_JSBLOCK0';
document.write("navigator.appName " + navigator.appName + "<br>");
document.write("navigator.userAgent" + navigator.userAgent + "<br>");
document.write("navigator.appVersion" + navigator.appVersion + "<br>");
END_JSBLOCK0
($jscript[1]) = <<'END_JSBLOCK1';
document.write("<TT>major:" + is.major + "</TT><br>");
document.write("<TT>minor:" + is.minor + "</TT><br>");
END_JSBLOCK1
($jscript[2]) = <<'END_JSBLOCK2';
document.write("nav:" + is.nav + "<br>");
document.write("nav2:" + is.nav2 + "<br>");
document.write("nav3:" + is.nav3 + "<br>");
document.write("nav4:" + is.nav4 + "<br>");
document.write("nav4up:" + is.nav4up + "<br>");
document.write("nav5:" + is.nav5 + "<br>");
document.write("nav5up:" + is.nav5up + "<br>");
document.write("navonly:" + is.navonly + "<br>");
document.write("<P>" + "ie:" + is.ie + "<br>");
document.write("ie3:" + is.ie3 + "<br>");
document.write("ie4:" + is.ie4 + "<br>");
document.write("ie4up:" + is.ie4up + "<br>");
document.write("ie5:" + is.ie5 + "<br>");
document.write("ie5up:" + is.ie5up + "<br>");
document.write("<P>" + "aol:" + is.aol + "<br>");
document.write("aol3:" + is.aol3 + "<br>");
document.write("aol4:" + is.aol4 + "<br>");
document.write("<P>" + "opera:" + is.opera + "<br>");
document.write("<P>" + "webtv:" + is.webtv + "<br>");
END_JSBLOCK2
($jscript[3]) = <<'END_JSBLOCK3';
document.write("js:" + is.js + "<br>");
END_JSBLOCK3
($jscript[4]) = <<'END_JSBLOCK4';
document.write("win:" + is.win + "<br>");
document.write("win16:" + is.win16 + "<br>");
document.write("win31:" + is.win31 + "<br>");
document.write("win32:" + is.win32 + "<br>");
document.write("win95:" + is.win95 + "<br>");
document.write("win98:" + is.win98 + "<br>");
document.write("winnt:" + is.winnt + "<br>");
document.write("<P>" + "os2:" + is.os2 + "<br>");
document.write("<P>" + "mac:" + is.mac + "<br>");
document.write("mac68k:" + is.mac68k + "<br>");
document.write("macppc:" + is.macppc + "<br>");
document.write("<P>" + "unix:" + is.unix + "<br>");
document.write("sun:" + is.sun + "<br>");
document.write("sun4:" + is.sun4 + "<br>");
document.write("sun5:" + is.sun5 + "<br>");
document.write("suni86:" + is.suni86 + "<br>");
document.write("irix:" + is.irix + "<br>");
document.write("irix5:" + is.irix5 + "<br>");
document.write("irix6:" + is.irix6 + "<br>");
document.write("hpux:" + is.hpux + "<br>");
document.write("hpux9:" + is.hpux9 + "<br>");
document.write("hpux10:" + is.hpux10 + "<br>");
document.write("aix:" + is.aix + "<br>");
document.write("aix1:" + is.aix1 + "<br>");
document.write("aix2:" + is.aix2 + "<br>");
document.write("aix3:" + is.aix3 + "<br>");
document.write("aix4:" + is.aix4 + "<br>");
document.write("linux:" + is.linux + "<br>");
document.write("sco:" + is.sco + "<br>");
document.write("unixware:" + is.unixware + "<br>");
document.write("mpras:" + is.mpras + "<br>");
document.write("reliant:" + is.reliant + "<br>");
document.write("dec:" + is.dec + "<br>");
document.write("sinix:" + is.sinix + "<br>");
document.write("bsd:" + is.bsd + "<br>");
document.write("freebsd:" + is.freebsd + "<br>");
document.write("<P>" + "vms:" + is.vms + "<br>");
END_JSBLOCK4
return @jscript;
}
#!perl
#
use strict;
use Pack;
use vars qw/$VERSION/;
$VERSION = '1.01b';
my $Version = "v$VERSION\[p$Pack::VERSION-pm$Pack::PM_VERSION\]";
if ((!$ARGV[0]) || ($ARGV[0] ne '-o')) {
print "$0 $Version\n";
print " This program generates an html page containing examples of packed Javascript\n";
print "\tSyntax: $0 -o > testpage.htm\n";
exit(1);
}
# Get the javascript to be packed
my $libraryscript = getJSLibrary(); # eg a library - could be from an external file
my @blockscripts = getJSBlocks(); # eg local blocks specific to this page
# Set pack options (extend with cgi interface etc)
my $encoding = 62;
my $fastdecoding = 1;
my $specialcharacters = 1;
# Pack the source scripts
my $packedlibrary = &Pack::pack($libraryscript, $encoding, $fastdecoding, $specialcharacters);
my @packedblocks = ();
for (my $i=0; $i< scalar(@blockscripts); $i++) { # Pack each indexed block of js code
$packedblocks[$i] = &Pack::pack($blockscripts[$i], $encoding, $fastdecoding, $specialcharacters);
}
# Output the html page containing the packed scripts (passed by reference in this case)
#print "Content-type: text/html\n\n";
printHTMLPage(\$packedlibrary,\@packedblocks);
##########
# End #
exit(0); #
##########
################
# Sub-routines #
################
#############
# HTML PAGE #
#############
sub printHTMLPage {
my ($libraryref,$blocksref) = @_; # References to packed scripts - need to be de-referenced in interpolations
my ($HTML) = <<"END_HTML";
<html><head><title>Packed script example page</title>
<!-- Here is where the library script is inserted -->
<script language="JavaScript">$$libraryref</script>
<!-->
</head><body>
<center>
<h1>Packed Javascript</h1>
<p>
Javascript contained within this page has been packed using using <br>
Packer [$0] $Version<br>
a JavaScript Compressor/Obfuscator developed by Dean Edwards <<a href="http://dean.edwards.name/">http://dean.edwards.name/</a>><br>
and ported to Perl by Rob Seiler, ELR Software Pty Ltd <<a href="http://www.elr.com.au/">http://www.elr.com.au</a>><br>
Copyright 2005. License <a href="http://creativecommons.org/licenses/LGPL/2.1/">http://creativecommons.org/licenses/LGPL/2.1/</a>>
</p>
</center>
<h2>Profile of your Browser</h2>
<p>Here are the results of running the packed JavaScript code in the browser you are using.
If you are seeing bowser vendor, version, and operating system data, the packed scripts are functioning properly.</p>
<!-- Here is where the local block scripts are inserted -->
<h3>Bascic Data</h3> <script language="JavaScript">$$blocksref[0]</script>
<h3>Version Number</h3> <script language="JavaScript">$$blocksref[1]</script>
<h3>Browser Version</h3> <script language="JavaScript">$$blocksref[2]</script>
<h3>JavaScript Version</h3><script language="JavaScript">$$blocksref[3]</script>
<h3>OS</h3> <script language="JavaScript">$$blocksref[4]</script>
<!-->
</body></html>
END_HTML
print $HTML;
}
#############################
# Javascript Source Scripts #
#############################
# Below are our example Javascript code blocks
sub getJSLibrary {
my ($jscript) = <<'END_JSLIBRARY';
// Ultimate client-side JavaScript client sniff.
// (C) Netscape Communications 1999. Permission granted to reuse and distribute.
// Revised 7 May 99 to add is.nav5up and is.ie5up (see below). (see below).
// Everything you always wanted to know about your JavaScript client
// but were afraid to ask ... "Is" is the constructor function for "is" object,
// which has properties indicating:
// (1) browser vendor:
// is.nav, is.ie, is.opera
// (2) browser version number:
// is.major (integer indicating major version number: 2, 3, 4 ...)
// is.minor (float indicating full version number: 2.02, 3.01, 4.04 ...)
// (3) browser vendor AND major version number
// is.nav2, is.nav3, is.nav4, is.nav4up, is.ie3, is.ie4, is.ie4up, is.ie5, is.ie5up
// (4) JavaScript version number:
// is.js (float indicating full JavaScript version number: 1, 1.1, 1.2 ...)
// (5) OS platform and version:
// is.win, is.win16, is.win32, is.win31, is.win95, is.winnt, is.win98
// is.os2
// is.mac, is.mac68k, is.macppc
// is.unix
// is.sun, is.sun4, is.sun5, is.suni86
// is.irix, is.irix5, is.irix6
// is.hpux, is.hpux9, is.hpux10
// is.aix, is.aix1, is.aix2, is.aix3, is.aix4
// is.linux, is.sco, is.unixware, is.mpras, is.reliant
// is.dec, is.sinix, is.freebsd, is.bsd
// is.vms
//
// See http://www.it97.de/JavaScript/JS_tutorial/bstat/navobj.html and
// http://www.it97.de/JavaScript/JS_tutorial/bstat/Browseraol.html
// for detailed lists of userAgent strings.
//
// Note: you don't want your Nav4 or IE4 code to "turn off" or
// stop working when Nav5 and IE5 (or later) are released, so
// in conditional code forks, use is.nav4up ("Nav4 or greater")
// and is.ie4up ("IE4 or greater") instead of is.nav4 or is.ie4
// to check version in code which you want to work on future
// versions.
function Is ()
{ // convert all characters to lowercase to simplify testing
var agt=navigator.userAgent.toLowerCase();
// *** BROWSER VERSION ***
// Note: On IE5, these return 4, so use is.ie5up to detect IE5.
this.major = parseInt(navigator.appVersion);
this.minor = parseFloat(navigator.appVersion);
this.nav = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
&& (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
&& (agt.indexOf('webtv')==-1));
this.nav2 = (this.nav && (this.major == 2));
this.nav3 = (this.nav && (this.major == 3));
this.nav4 = (this.nav && (this.major == 4));
this.nav4up = (this.nav && (this.major >= 4));
this.navonly = (this.nav && ((agt.indexOf(";nav") != -1) ||
(agt.indexOf("; nav") != -1)) );
this.nav5 = (this.nav && (this.major == 5));
this.nav5up = (this.nav && (this.major >= 5));
this.ie = (agt.indexOf("msie") != -1);
this.ie3 = (this.ie && (this.major < 4));
this.ie4 = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.0")==-1) );
this.ie4up = (this.ie && (this.major >= 4));
this.ie5 = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.0")!=-1) );
this.ie5up = (this.ie && !this.ie3 && !this.ie4);
this.aol = (agt.indexOf("aol") != -1);
this.aol3 = (this.aol && this.ie3);
this.aol4 = (this.aol && this.ie4);
this.opera = (agt.indexOf("opera") != -1);
this.webtv = (agt.indexOf("webtv") != -1);
// *** JAVASCRIPT VERSION CHECK ***
// Useful to workaround Nav3 bug in which Nav3
// loads <SCRIPT LANGUAGE="JavaScript1.2">
if (this.nav2 || this.ie3) this.js = 1.0;
else if (this.nav3 || this.opera) this.js = 1.1;
else if ((this.nav4 && (this.minor <= 4.05)) || this.ie4) this.js = 1.2;
else if ((this.nav4 && (this.minor > 4.05)) || this.ie5) this.js = 1.3;
else if (this.nav5) this.js = 1.4;
// NOTE: In the future, update this code when newer versions of JS
// are released. For now, we try to provide some upward compatibility
// so that future versions of Nav and IE will show they are at
// *least* JS 1.x capable. Always check for JS version compatibility
// with > or >=.
else if (this.nav && (this.major > 5)) this.js = 1.4;
else if (this.ie && (this.major > 5)) this.js = 1.3;
// HACK: no idea for other browsers; always check for JS version with > or >=
else this.js = 0.0;
// *** PLATFORM ***
this.win = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
// NOTE: On Opera 3.0, the userAgent string includes "Windows 95/NT4" on all
// Win32, so you can't distinguish between Win95 and WinNT.
this.win95 = ((agt.indexOf("win95")!=-1) || (agt.indexOf("windows 95")!=-1));
// is this a 16 bit compiled version?
this.win16 = ((agt.indexOf("win16")!=-1) ||
(agt.indexOf("16bit")!=-1) || (agt.indexOf("windows 3.1")!=-1) ||
(agt.indexOf("windows 16-bit")!=-1) );
this.win31 = ((agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) ||
(agt.indexOf("windows 16-bit")!=-1));
// NOTE: Reliable detection of Win98 may not be possible. It appears that:
// - On Nav 4.x and before you'll get plain "Windows" in userAgent.
// - On Mercury client, the 32-bit version will return "Win98", but
// the 16-bit version running on Win98 will still return "Win95".
this.win98 = ((agt.indexOf("win98")!=-1) || (agt.indexOf("windows 98")!=-1));
this.winnt = ((agt.indexOf("winnt")!=-1) || (agt.indexOf("windows nt")!=-1));
this.win32 = ( this.win95 || this.winnt || this.win98 ||
((this.major >= 4) && (navigator.platform == "Win32")) ||
(agt.indexOf("win32")!=-1) || (agt.indexOf("32bit")!=-1) );
this.os2 = ((agt.indexOf("os/2")!=-1) ||
(navigator.appVersion.indexOf("OS/2")!=-1) ||
(agt.indexOf("ibm-webexplorer")!=-1));
this.mac = (agt.indexOf("mac")!=-1);
this.mac68k = (this.mac && ((agt.indexOf("68k")!=-1) ||
(agt.indexOf("68000")!=-1)));
this.macppc = (this.mac && ((agt.indexOf("ppc")!=-1) ||
(agt.indexOf("powerpc")!=-1)));
this.sun = (agt.indexOf("sunos")!=-1);
this.sun4 = (agt.indexOf("sunos 4")!=-1);
this.sun5 = (agt.indexOf("sunos 5")!=-1);
this.suni86= (this.sun && (agt.indexOf("i86")!=-1));
this.irix = (agt.indexOf("irix") !=-1); // SGI
this.irix5 = (agt.indexOf("irix 5") !=-1);
this.irix6 = ((agt.indexOf("irix 6") !=-1) || (agt.indexOf("irix6") !=-1));
this.hpux = (agt.indexOf("hp-ux")!=-1);
this.hpux9 = (this.hpux && (agt.indexOf("09.")!=-1));
this.hpux10= (this.hpux && (agt.indexOf("10.")!=-1));
this.aix = (agt.indexOf("aix") !=-1); // IBM
this.aix1 = (agt.indexOf("aix 1") !=-1);
this.aix2 = (agt.indexOf("aix 2") !=-1);
this.aix3 = (agt.indexOf("aix 3") !=-1);
this.aix4 = (agt.indexOf("aix 4") !=-1);
this.linux = (agt.indexOf("inux")!=-1);
this.sco = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1);
this.unixware = (agt.indexOf("unix_system_v")!=-1);
this.mpras = (agt.indexOf("ncr")!=-1);
this.reliant = (agt.indexOf("reliantunix")!=-1);
this.dec = ((agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) ||
(agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) ||
(agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1));
this.sinix = (agt.indexOf("sinix")!=-1);
this.freebsd = (agt.indexOf("freebsd")!=-1);
this.bsd = (agt.indexOf("bsd")!=-1);
this.unix = ((agt.indexOf("x11")!=-1) || this.sun || this.irix || this.hpux ||
this.sco ||this.unixware || this.mpras || this.reliant ||
this.dec || this.sinix || this.aix || this.linux || this.bsd || this.freebsd);
this.vms = ((agt.indexOf("vax")!=-1) || (agt.indexOf("openvms")!=-1));
}
var is;
var isIE3Mac = false;
// this section is designed specifically for IE3 for the Mac
if ((navigator.appVersion.indexOf("Mac")!=-1) && (navigator.userAgent.indexOf("MSIE")!=-1) &&
(parseInt(navigator.appVersion)==3))
isIE3Mac = true;
else is = new Is();
END_JSLIBRARY
return $jscript; # Return the JS library code block
}
sub getJSBlocks {
my @jscript = ();
($jscript[0]) = <<'END_JSBLOCK0';
document.write("navigator.appName " + navigator.appName + "<br>");
document.write("navigator.userAgent" + navigator.userAgent + "<br>");
document.write("navigator.appVersion" + navigator.appVersion + "<br>");
END_JSBLOCK0
($jscript[1]) = <<'END_JSBLOCK1';
document.write("<TT>major:" + is.major + "</TT><br>");
document.write("<TT>minor:" + is.minor + "</TT><br>");
END_JSBLOCK1
($jscript[2]) = <<'END_JSBLOCK2';
document.write("nav:" + is.nav + "<br>");
document.write("nav2:" + is.nav2 + "<br>");
document.write("nav3:" + is.nav3 + "<br>");
document.write("nav4:" + is.nav4 + "<br>");
document.write("nav4up:" + is.nav4up + "<br>");
document.write("nav5:" + is.nav5 + "<br>");
document.write("nav5up:" + is.nav5up + "<br>");
document.write("navonly:" + is.navonly + "<br>");
document.write("<P>" + "ie:" + is.ie + "<br>");
document.write("ie3:" + is.ie3 + "<br>");
document.write("ie4:" + is.ie4 + "<br>");
document.write("ie4up:" + is.ie4up + "<br>");
document.write("ie5:" + is.ie5 + "<br>");
document.write("ie5up:" + is.ie5up + "<br>");
document.write("<P>" + "aol:" + is.aol + "<br>");
document.write("aol3:" + is.aol3 + "<br>");
document.write("aol4:" + is.aol4 + "<br>");
document.write("<P>" + "opera:" + is.opera + "<br>");
document.write("<P>" + "webtv:" + is.webtv + "<br>");
END_JSBLOCK2
($jscript[3]) = <<'END_JSBLOCK3';
document.write("js:" + is.js + "<br>");
END_JSBLOCK3
($jscript[4]) = <<'END_JSBLOCK4';
document.write("win:" + is.win + "<br>");
document.write("win16:" + is.win16 + "<br>");
document.write("win31:" + is.win31 + "<br>");
document.write("win32:" + is.win32 + "<br>");
document.write("win95:" + is.win95 + "<br>");
document.write("win98:" + is.win98 + "<br>");
document.write("winnt:" + is.winnt + "<br>");
document.write("<P>" + "os2:" + is.os2 + "<br>");
document.write("<P>" + "mac:" + is.mac + "<br>");
document.write("mac68k:" + is.mac68k + "<br>");
document.write("macppc:" + is.macppc + "<br>");
document.write("<P>" + "unix:" + is.unix + "<br>");
document.write("sun:" + is.sun + "<br>");
document.write("sun4:" + is.sun4 + "<br>");
document.write("sun5:" + is.sun5 + "<br>");
document.write("suni86:" + is.suni86 + "<br>");
document.write("irix:" + is.irix + "<br>");
document.write("irix5:" + is.irix5 + "<br>");
document.write("irix6:" + is.irix6 + "<br>");
document.write("hpux:" + is.hpux + "<br>");
document.write("hpux9:" + is.hpux9 + "<br>");
document.write("hpux10:" + is.hpux10 + "<br>");
document.write("aix:" + is.aix + "<br>");
document.write("aix1:" + is.aix1 + "<br>");
document.write("aix2:" + is.aix2 + "<br>");
document.write("aix3:" + is.aix3 + "<br>");
document.write("aix4:" + is.aix4 + "<br>");
document.write("linux:" + is.linux + "<br>");
document.write("sco:" + is.sco + "<br>");
document.write("unixware:" + is.unixware + "<br>");
document.write("mpras:" + is.mpras + "<br>");
document.write("reliant:" + is.reliant + "<br>");
document.write("dec:" + is.dec + "<br>");
document.write("sinix:" + is.sinix + "<br>");
document.write("bsd:" + is.bsd + "<br>");
document.write("freebsd:" + is.freebsd + "<br>");
document.write("<P>" + "vms:" + is.vms + "<br>");
END_JSBLOCK4
return @jscript;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment