SA-XROSS शिमोइगुसा 1 अब खुला है!
शिमोइगुसा नाकानो वार्ड में स्थित एक शांत शहर है।
स्टेशन के सामने सुपरमार्केट, फार्मेसी, 100 येन की दुकानें आदि हैं
खरीदारी के लिए सुविधाजनक✨
यहां एक फिटनेस क्लब भी है, इसलिए यह उन लोगों के लिए अनुशंसित है जो व्यायाम करना चाहते हैं!
सेबू शिंजुकु लाइन✨ पर शिंजुकु जाने में सक्षम होना भी अच्छा है
यदि आप ताकादानोबाबा में एक बार ट्रेन बदलते हैं, तो आप टोक्यो में कहीं भी आसानी से जा सकते हैं।
';
$('.c-article-content h2, .c-article-content h3').each(function(num) {
$(this).attr('id', 'sec-' + num);
$title = $(this).text();
if($(this).prop("tagName") === 'H2') {
if($before === 'first'){
$index += '' + $title + '';
} else if($before === 'h2') {
$index += '' + $title + '';
} else {
$index += '' + $title + '';
}
$before = 'h2';
} else {
if($before === 'h2'){
$index += '- ' + $title + '';
} else {
$index += '
- ' + $title + '';
}
$before = 'h3';
}
});
if($before === 'h2'){
$index += '
';
} else {
$index += '';
}
$('.table-of-contents .body').html($index);
} else {
$('.table-of-contents').remove();
}
});
// スムーススクロール
$(document).on('click', '.table-of-contents a[href^="#"]', function(e) {
var headerH = $('#header').height();
var speed = 500;
// アンカーの値取得
var href = $(this).attr('href');
// 移動先を取得
var target = $(href == '#' || href == '' ? 'html' : href);
// 移動先を数値で取得
var position = target.offset().top - headerH;
// スムーススクロール lazyload対策で実際には2回スムーススクロール実行
$.when(
$("html, body").animate({
scrollTop: position
}, speed, "swing"),
e.preventDefault(),
).done(function() {
var diff = target.offset().top - headerH;
if (diff === position) {} else {
$("html, body").animate({
scrollTop: diff
}, 10, "swing");
}
});
return false;
});
//目次の[表示][非表示]翻訳
$openCount = 0;
$('.table-of-contents .head .btn').on('click', function() {
$openCount += 1;
if($openCount % 2 === 0){
$(this).html('[प्रदर्शन]');
} else {
$(this).html('[छिपा हुआ]');
}
});