feat: more assets
All checks were successful
Astro Check / astro-check (push) Successful in 47s

This commit is contained in:
kittentm 2026-07-18 23:38:12 +02:00
commit 23cac28843
Signed by: kitten
GPG key ID: 394B4EABE4405A83
30 changed files with 102 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 649 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 B

101
public/js/legal03_01.js Normal file
View file

@ -0,0 +1,101 @@
$(function() {
// -------------------------------------------------
// main
// -------------------------------------------------
var url = $.url();
//set menubar
var menu_bar;
//購入フローから
if(url.param('buying_section')==='law'){
$.sessionStorage().setItem('buying_section',url.param('buying_section'));
switch(url.param('type')){
case'title':
$.sessionStorage().setItem('addr_referrer','buy01_01.html?type='+url.param('type') +
'&title='+url.param('title')+
getCouponCodeUrlQuery() +
'&buying_section='+url.param('buying_section'));
break;
case'aoc':
$.sessionStorage().setItem('buying_aoc',url.param('aoc[]'));
$.sessionStorage().setItem('addr_referrer','buy01_01.html?type='+url.param('type') +
'&title='+url.param('title')+
'&buying_section='+url.param('buying_section')+
'&aoc[]='+url.param('aoc[]'));
break;
case'ticket':
$.sessionStorage().setItem('buying_ticket',url.param('ticket'));
$.sessionStorage().setItem('addr_referrer','buy01_01.html?type='+url.param('type') +
'&title='+url.param('title')+
'&buying_section='+url.param('buying_section')+
'&ticket='+url.param('ticket'));
break;
case'demo':
$.sessionStorage().setItem('addr_referrer','buy01_01.html?type='+url.param('type') +
'&title='+url.param('title')+
'&demo='+url.param('demo')+
'&buying_section='+url.param('buying_section'));
break;
default:
break;
}
menu_bar= new MenuBar(6, $.sessionStorage().getItem('addr_referrer'));
//戻る
}else if($.sessionStorage().getItem('buying_section')==='law'){
menu_bar = new MenuBar(6);
menu_bar.initBackEvt($.sessionStorage().getItem('addr_referrer'));
//継続課金から
}else if(url.param('seq')==='auto_billing'){
menu_bar = new MenuBar(6);
}else{
menu_bar = new MenuBar(1);
}
var nsuid = url.param('title');
var type = url.param('type');
var is_correct_type = (type === 'title' || type === 'aoc' || type === 'ticket');
if (!is_correct_type) {
// title, aoc, ticket 以外ならデフォルトのtitleにする
type = 'title';
}
//特商法メッセージ取得
var req_obj = {
url : samuraiBase+'ws/' + country + '/title/' + nsuid + '/law_message',
type : 'GET',
data : {'lang':lang, content_type:type }
};
//ajax
$.getXml(req_obj)
.done(
function(xml){
$('#sel_text').html($(xml).find('body').text().replace(/\n/g,'<br />\n'));
}
)
.fail(
function(xml){
var error_code = $(xml.responseText).find('code').text();
var error_msg = $(xml.responseText).find('message').text();
setErrorHandler(prefixSamurai, error_code, error_msg, function(){});
}
);
// -------------------------------------------------
// event
// -------------------------------------------------
});
// -------------------------------------------------
// functions
// -------------------------------------------------
//history.back時の処理
window.onpageshow = function(e) {
if (e.persisted) {
$('#sel_menu_bar .on').removeClass('on'); // SEE #11973
}
getBalance();
//BGM
setBGM('setting');
};

View file

@ -0,0 +1 @@
<!DOCTYPE html><html lang="ja"><head><meta charset="utf-8"><meta http-equiv="Content-Script-Type" content="text/javascript"><meta http-equiv="Content-Style-Type" content="text/css"><title data-message="legal03_01_001"></title><link rel="stylesheet" href="css/minified/mymenu.css"><link rel="stylesheet" href="css/index.css"><link rel="stylesheet" href="css/legal.css"><script type="text/javascript" src="js/import.js?ts=1465872859469" onerror="wiiuErrorViewer.openByCode(1119000);wiiuBrowser.jumpToHomeButtonMenu();"></script><script type="text/javascript" src="js/legal03_01.js" onerror="wiiuErrorViewer.openByCode(1119000);wiiuBrowser.jumpToHomeButtonMenu();"></script></head><body><div id="wrap"><div id="legal03_01"><div id="sb_cont"><div id="header_common"><h1 data-message="legal03_01_001"></h1></div><div id="contents_common"><div class="fox"><p id="sel_text" class="lf"></p></div></div></div><div id="sel_menu_bar"></div></div></div></body></html>