นิยาย Dek-D พบกับประสบการณ์อ่านที่ดียิ่งขึ้น
แบบไม่มีโฆษณา ที่แอปนิยาย Dek-D
Dek-D.com ใช้คุกกี้เพื่อพัฒนาประสบการณ์ของผู้ใช้ให้ดียิ่งขึ้น เรียนรู้เพิ่มเติมที่นี่ ยอมรับ
ลำดับตอนที่ #19
ตั้งค่าการอ่าน
ค่าเริ่มต้น
- เลื่อนอัตโนมัติ
คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
` : ''} `).addClass('with-autoscroll') if (shouldShowGuiding) { $('.autoscroll-guiding').fadeIn(1000, () => { setTimeout(() => { AUTO_SCROLL_SETTING.removeGuiding() }, 5000) }) } } else { $('.autoscroll-trigger-btn').remove() $('.scroll-to-top-btn').removeClass('with-autoscroll') AUTO_SCROLL_SETTING.autoScroller.stop() } }, checkScrollPositionToToggleAutoScrollTrigger() { const scrollTop = $(window).scrollTop() const mainContainerId = '.content-area' const bigBoxMinFixed = $(mainContainerId).offset().top const autoScrollAnchorTop = $('#stop-autoscroll-anchor').offset().top const storySpaceHeight = $(mainContainerId)[0].clientHeight; const switchBtn = '#autoscroll-switch' if (scrollTop <= bigBoxMinFixed || (scrollTop > bigBoxMinFixed && scrollTop < autoScrollAnchorTop - 1000)) { $('.autoscroll-trigger-btn').show() if ($(switchBtn).hasClass('_on')) { $('.scroll-to-top-btn').addClass('with-autoscroll') } else { $('.scroll-to-top-btn').removeClass('with-autoscroll') } } if (scrollTop > autoScrollAnchorTop - 800) { $('.autoscroll-trigger-btn').hide() $('.scroll-to-top-btn').removeClass('with-autoscroll') } }, shouldShowGuiding() { return !localStorage.getItem(AUTO_SCROLL_SETTING.guidingStorageKey) }, removeGuiding() { const $guiding = $('.autoscroll-guiding') $guiding.fadeOut(500, () => { localStorage.setItem(AUTO_SCROLL_SETTING.guidingStorageKey, 1) $guiding.remove() }) }, } $(document).ready(function() { if (window.autoScrolling) { const options = window.isWebtoon ? { useInterval: false, } : {} AUTO_SCROLL_SETTING.autoScroller = window.autoScrolling.init({ ...options, stopSelector: '#stop-autoscroll-anchor', event: { onStart: () => { if (window.pageYOffset >= 1500) { $('.scroll-to-top-btn').css('opacity', '0.3') } $('#autoscroll-trigger').css('opacity', '0.3').find('i').removeClass('fa-play').addClass('fa-pause') }, onStop: () => { if (window.pageYOffset >= 1500) { $('.scroll-to-top-btn').css('opacity', '1') } $('#autoscroll-trigger').css('opacity', '1').find('i').removeClass('fa-pause').addClass('fa-play') } } }) } modalBox.create('reset-panel', document.querySelector('#reset-panel'), {}); let fontsizeCookie const fontFamily = getCookie('font-swapped-app'); const isTHSarabun = fontFamily === 'THSarabunNew' || !fontFamily; let lineHeightCookie = getCookie('reader-lineHeight-value') || 1.7; fontsizeCookie = isTHSarabun ? getCookie('reader-fontSize-thsarabun') || 28 : getCookie('reader-fontSize') || 18; let mainSpace = $("div.story:not(#story-content-short):not(.selling-chapter)"); let storySpace = $('div.story:not(#story-content-short):not(.selling-chapter) *'); $(mainSpace).css('font-size', `${fontsizeCookie}px`) $(storySpace).css('line-height', `${lineHeightCookie}`).css('font-size', `${fontsizeCookie}px`) AUTO_SCROLL_SETTING.setAutoScrollSliderBackground() AUTO_SCROLL_SETTING.appendAutoScrollTrigger() $(document) .on('click', '.autoscroll-guiding', AUTO_SCROLL_SETTING.removeGuiding) .on('input', '#autoscroll-speed', function() { const $slider = $(this) AUTO_SCROLL_SETTING.setAutoScrollSliderBackground() AUTO_SCROLL_SETTING.activeValue.set($slider.val()) if ($('#autoscroll-switch').hasClass('_on')) { AUTO_SCROLL_SETTING.autoScroller.start(+$slider.val()) } }) .on('click', '#autoscroll-switch', function() { if ($(this).hasClass('_off')) { AUTO_SCROLL_SETTING.isActive.set(1); $(this).addClass('_on').removeClass('_off') $('#autoscroll-slider-wrapper').removeClass('_disabled') } else { AUTO_SCROLL_SETTING.isActive.set(); $(this).addClass('_off').removeClass('_on') $('#autoscroll-slider-wrapper').addClass('_disabled') } AUTO_SCROLL_SETTING.appendAutoScrollTrigger() AUTO_SCROLL_SETTING.checkScrollPositionToToggleAutoScrollTrigger() }).on('click', '#autoscroll-trigger', function() { $(this).blur() AUTO_SCROLL_SETTING.removeGuiding() AUTO_SCROLL_SETTING.autoScroller.toggle(+$('#autoscroll-speed').val()) }); $('.theme-setting__wrapper a').on('click', AUTO_SCROLL_SETTING.setAutoScrollSliderBackground) $('#js-reset-panel-control').click(function(e) { e.preventDefault(); e.stopPropagation(); modalBox.get('reset-panel').show(); }) $('#confirm-reset-panel').click(function(e) { e.preventDefault(); e.stopPropagation(); $.removeCookie("reader-nightmode"); $.removeCookie("reader-lineHeight"); // remove old cookie $.removeCookie("reader-lineHeight-value"); $.removeCookie("reader-fontSize"); // remove old cookie $.removeCookie("reader-fontSize-thsarabun"); $.removeCookie("font-swapped", { path: '/', domain: '.dek-d.com' }); $.removeCookie("font-swapped-app", { path: '/', domain: '.dek-d.com' }); AUTO_SCROLL_SETTING.resetCookie() window.location.reload() }) $('.cancelbutton').click(function(e) { modalBox.get('reset-panel').hide(); }) }); (function() { let cacheFontSize = getCookie('reader-fontSize'); $(".font-trigger").on("click", function(e) { var method = $(this).data("method"); var fontFamily = getCookie("font-swapped-app"); var isTHSarabun = fontFamily === 'THSarabunNew' || !fontFamily; var scaler = 10; var fontSize = parseInt(cacheFontSize) > 0 ? parseInt(cacheFontSize) : 18; e.stopPropagation(); // Minimum font size is 16px and maximum font size is 72px if ((fontSize === 4 && method === "down") || (fontSize === 80 && method === "up")) { e.preventDefault(); return null; } switch (method) { case "up": fontSize += 2; cacheFontSize = fontSize; $.cookie("reader-fontSize", fontSize); $.cookie("reader-fontSize-thsarabun", fontSize + scaler); break; case "down": fontSize -= 2; cacheFontSize = fontSize; $.cookie("reader-fontSize", fontSize); $.cookie("reader-fontSize-thsarabun", fontSize + scaler); break; default: break; } $("div.story:not(#story-content-short):not(.selling-chapter)").css("font-size", isTHSarabun ? fontSize + scaler : fontSize); $("div.story:not(#story-content-short):not(.selling-chapter) *").css("font-size", isTHSarabun ? fontSize + scaler : fontSize); e.preventDefault(); }); $('.lineHeight').click(function(e) { e.preventDefault(); e.stopPropagation(); let methodTheme = $(this).data('height'); let storySpaceHeight = $('div.story:not(#story-content-short):not(.selling-chapter) *'); let lineHeight = parseInt(storySpaceHeight.css('line-height')); switch (methodTheme) { case 'min': lineHeight = 1.7 $.cookie('reader-lineHeight-value', lineHeight) document.getElementById('toggle-min').setAttribute('class', 'lineHeight active') document.getElementById('toggle-medium').setAttribute('class', 'lineHeight') document.getElementById('toggle-max').setAttribute('class', 'lineHeight') break case 'medium': lineHeight = 2.5 $.cookie('reader-lineHeight-value', lineHeight) document.getElementById('toggle-min').setAttribute('class', 'lineHeight') document.getElementById('toggle-medium').setAttribute('class', 'lineHeight active') document.getElementById('toggle-max').setAttribute('class', 'lineHeight') break case 'max': lineHeight = 3 $.cookie('reader-lineHeight-value', lineHeight) document.getElementById('toggle-min').setAttribute('class', 'lineHeight') document.getElementById('toggle-medium').setAttribute('class', 'lineHeight') document.getElementById('toggle-max').setAttribute('class', 'lineHeight active') break default: break } storySpaceHeight.css('line-height', lineHeight); }) let mouseInside = false; $('.reader-setting-show, #font-size-popup').hover(function() { mouseInside = true; }, function() { mouseInside = false; }); $('#font-size-popup').click(function(e) { e.stopPropagation(); $('.reader-setting-show').toggle(); $('#list-activity-novel, .list__action.-short').hide(); }); // Detect click outside content setting modal $(document).on('click', function(event) { if (!$(event.target).closest('.reader-setting-show').length) { $('.reader-setting-show').hide(); } }) .on('click', '#content-area', function() { }); })() window.addEventListener('DOMContentLoaded', function() { $(window).on('scroll', function() { const scrollDirection = CONTENT_SCROLLING.checkScrollingDirection() const contentAreaPosition = CONTENT_SCROLLING.checkContentAreaPosition() const chapterListAreaPosition = CONTENT_SCROLLING.checkChapterListAreaPosition() // For hide/show autoscroll trigger button when content-area is not in the screen AUTO_SCROLL_SETTING.checkScrollPositionToToggleAutoScrollTrigger() if (contentAreaPosition === 'before') { $('#head.stickable').css('position', '').css('top', '').css('margin-top', '').css('width', '') $('.reader-setting-show').css('position', 'absolute').css('top', '').css('margin-top', '') } else if (contentAreaPosition === 'in') { $('#head.stickable').css('position', 'fixed').css('top', '0').css('margin-inline', 'auto') $('.reader-setting-show').css('position', 'fixed').css('top', '0').css('margin-top', '46px').css('right', 'auto').css('margin-left', '687px') } else { $('#head.stickable').css('position', '').css('top', '').css('margin-top', '').css('width', '') $('.reader-setting-show').css('position', '').css('top', '').css('margin-top', '') } // Chapter list condition if (window?.page != 'chapter') { if (chapterListAreaPosition === 'before') { $('#chapter-list-section .writer-section-head').css('position', '').css('top', '').css('margin-top', '').css('width', '').css('transform', 'translateY(-22px)') } else if (chapterListAreaPosition === 'in') { $('#chapter-list-section .writer-section-head').css('position', 'fixed').css('top', '0px').css('margin-top', '0px').css('z-index', 11).css('transform', 'translateY(0px)') } else { $('#chapter-list-section .writer-section-head').css('position', '').css('top', '').css('margin-top', '').css('width', '').css('transform', 'translateY(-22px)') } } }); }); })()
ลำดับตอนที่ #19 : [Spring Anime 2011] .. ตารางอนิเมะฤดูใบไม้ผลิ 2011 !
-
อัปเดตล่าสุด 7 เม.ย. 54
ลิที่ภาพ​เพื่อูนา​ให่
มา​แล้วๆ​ ับาราอนิ​เมะ​อฤู​ใบ้​ไหม้ผลิ 2011 ึ่็ถือ​เป็นาร​เริ่ม้นอนิ​เมะ​​ใหม่ๆ​ ที่ะ​​เ้ามา​ในปี 2011 นี้ันอย่า​เ็มัวล่ะ​ ​และ​็ู​เหมือนว่าะ​มีอนิ​เมะ​สนุๆ​ มา​ใหู้ัน​เพียบอี​แล้ว ส่วนะ​มี​เรื่อ​ไหนยั​ไบ้าาม​เ้ามาูัน​เลย้า!
**อย่า​เิมถ้ามีอะ​​ไร​เพิ่มมาะ​​เอามาอัพ​เท​ให้อีทีนะ​ ส่วนอันนี้อัพ​เทล่าสุวันที่ 2 ​เมษายน 2011
อันนี้ออี​เ้านึ ลิที่ภาพ​เพื่อูนา​ให่
มีนาม 2011
- Danball Senki (TV) OLM, Inc. 2 มีนาม 2011
- Black Lagoon: Roberta’s Blood Trail (OVA) อน 4 า 5 Madhouse 2 มีนาม 2011
- Mobile Suit Gundam Unicorn (PSN) อน 3 า 6 Sunrise 5 มีนาม 2011
- Young Animator Training Project (TV) Various 5 มีนาม 2011
- Doraemon: Shin Nobita to Tetsujin Heidan Habatake Tenshi-tachi (Film) Shinei Animation 6 มีนาม 2011
- xxxHolic: Rou Adayume (OAD) มาพร้อมมัะ​​เล่ม 9 Production I.G 9 มีนาม 2011
- Princess Resurrection (OAD) มาพร้อมมัะ​​เล่ม 14 Production I.G 9 มีนาม 2011
- Nintama Rantarou Ninjutsu Gakuen Zenin Shutsudou! no Dan (Film) Aija-dou 12 มีนาม 2011
- Nichijou (OAD) มาพร้อมมัะ​​เล่ม 6 Kyoto Animation 12 มีนาม 2011
- Spelunker Sensei (OVA) indeprox 16 มีนาม 2011
- Air Gear: Kuro no Hane to Nemuri no Mori Break on the Sky (OAD) มาพร้อมมัะ​​เล่ม 30 Satelight 17 มีนาม 2011
- Precure All-Stars DX3 Mirai ni Todoke! Sekai o Tsunagu Niji-Iro no Hana (Film) Toei Animation 19 มีนาม 2011
- JUMP HEROES: One Piece 3D x Toriko 3D (Film) Toei Animation 19 มีนาม 2011
- Sekai Ichi Hatsukoi (OAD) มาพร้อมมัะ​​เล่ม 5 Studio DEEN 22 มีนาม 2011
- Hen Zemi (OAD) มาพร้อมมัะ​​เล่ม 5 XEBEC 23 มีนาม 2011
- Queen’s Blade: Utsukushiki Toushi-tachi (OVA) อน 6 ARMS 23 มีนาม 2011
- Morita-san wa Mukuchi (OVA) อน 2 Studio Gram 25 มีนาม 2011
- Norageki! (OVA) Sunrise 25 มีนาม 2011
- Mazinkaiser SKL (OVA) อน 3 Actas 25 มีนาม 2011
- Ghost in the Shell S.A.C. Solid State Society 3D (Film) Production I.G. 26 มีนาม 2011
- Nana to Kaoru (OAD) มาพร้อมมัะ​​เล่ม 6 AIC PLUS+ 29 มีนาม 2011
- Baka to Test to Shoukanjuu: Matsuri (OVA) อน 2 Silver Link 30 มีนาม 2011
- Shukufuku no Campanella (OVA) AIC 30 มีนาม 2011
​เมษายน 2011
- X-Men (TV) Madhouse 1 ​เมษายน 2011
- Nichijou (TV) Kyoto Animation 2 ​เมษายน 2011
- Jewelpet Sunshine (TV) Studio Comet 2 ​เมษายน 2011
- Tottoko Hamtaro Dechu (TV) 2 ​เมษายน 2011
- DOG DAYS (TV) Seven Arcs 2 ​เมษายน 2011
- Tiger & Bunny (TV) Sunrise 2 ​เมษายน 2011
- Duel Masters Victory (TV) Shogakukan Shueisha 2 ​เมษายน 2011
- Metal Fight Beyblade 4D (TV) Studio Comet 3 ​เมษายน 2011
- Hana-Saku Iroha (TV) P.A. Works 3 ​เมษายน 2011
- Suzy’s Zoo Daisuki! Witzy (TV) Digital Media Lab 3 ​เมษายน 2011
- Toriko (TV) Toei Animation 3 ​เมษายน 2011
- Shouwa Monogatari (TV) Wao World 3 ​เมษายน 2011
- Ore-tachi ni Tsubasa wa nai (TV) Nomad 3 ​เมษายน 2011
- Bakugan Battle Brawlers: Gundalian Invaders (TV) TMS Entertainment 3 ​เมษายน 2011
- Gintama (2011 Series) (TV) Sunrise 4 ​เมษายน 2011
- Sengoku Otome ~Momoiro Paradox~ (TV) TMS Entertainment 4 ​เมษายน 2011
- Fireball Charming (TV) Jinni’s Animation Studio 4 ​เมษายน 2011
- Tono to Issho: Gantai no Yabou (TV) Gathering 4 ​เมษายน 2011
- Fujilog (TV) 4 ​เมษายน 2011
- Ka”mpfer fu”r die Liebe (TV) 4 ​เมษายน 2011
- Hello! Mainichi Kaasan (English Version) GALLOP 4 ​เมษายน 2011
- STEINS;GATE (TV) WHITE FOX 5 ​เมษายน 2011
- Gyakkyou Burai Kaiji: Hakairoku-hen (TV) Madhouse 5 ​เมษายน 2011
- 30-sai no Hoken Taiiku (TV) Gathering 6 ​เมษายน 2011
- Happy Kappy (TV) Shogakukan Music & Digital 6 ​เมษายน 2011
- Hyouge Mono (TV) Bee Train 7 ​เมษายน 2011
- Sket Dance (TV) Tatsunoko Production 7 ​เมษายน 2011
- Maria+Holic: Alive (TV) SHAFT 7 ​เมษายน 2011
- Dororon Enma-kun (TV) Brain’s Base 7 ​เมษายน 2011
- Sofuteni (TV) XEBEC 7 ​เมษายน 2011
- A Channel (TV) Studio Gokumi 7 ​เมษายน 2011
- Yozakura Quartet: Hoshi no Umi (OAD) มาพร้อมมัะ​​เล่ม 10 Tatsunoko Production 8 ​เมษายน 2011
- Sekai-ichi Hatsukoi (TV) Studio DEEN 8 ​เมษายน 2011
- Yondemasuyo, Azazel-san. (TV) Production I.G 8 ​เมษายน 2011
- Hen Zemi (TV) XEBEC 8 ​เมษายน 2011
- Pretty Rhythm Aurora Dream (TV) Tatsunoko Production 9 ​เมษายน 2011
- Astarotte no Omocha! (TV) Diomedea 10 ​เมษายน 2011
- Ring ni Kakero 1: Sekai Taikai-hen (TV) ANIMAX 10 ​เมษายน 2011
- Yu-Gi-Oh! Zexal (TV) Studio Dice 11 ​เมษายน 2011
- The World God Only Knows (Season 2) (TV) Manglobe 11 ​เมษายน 2011
- Seikon no Qwaser II (TV) Hoods Entertainment 11 ​เมษายน 2011
- Hoshizora e Kakaru Hashi (TV) Dogakobo 11 ​เมษายน 2011
- Honto ni Atta! Reibai-Sensei (TV) DLE Inc. 12 ​เมษายน 2011
- [C]: The Money of Soul and Possibility Control (TV) Tatsunoko Production 14 ​เมษายน 2011
- Ano Hi Mita Hana no Namae wo Boku-tachi wa Mada Shiranai. (TV) A-1 Pictures Inc. 14 ​เมษายน 2011
- Denpa Onna to Seishun Otoko (TV) SHAFT 14 ​เมษายน 2011
- Aria the Scarlet Ammo (Hidan no Aria) (TV) J.C. Staff 14 ​เมษายน 2011
- FAIRY TAIL (OAD) มาพร้อมมัะ​​เล่ม 26 A-1 Pictures 15 ​เมษายน 2011
- Seitokai Yakuindomo (OAD) มาพร้อมมัะ​​เล่ม 5 GoHands 15 ​เมษายน 2011
- Detective Conan: Quarter of Silence (Film) Tokyo Movie 16 ​เมษายน 2011
- Deadman Wonderland (TV) Manglobe 16 ​เมษายน 2011
- Ao no Exorcist (TV) A-1 Pictures 17 ​เมษายน 2011
- Amagami SS Special (BD Only) ​แผ่น 3 อนพิ​เศษอ Tachibana Miya AIC 20 ​เมษายน 2011
- Beelzebub: Hashire! Beru-bo Keiji!! (BD Only) อนพิ​เศษอ BD ​แผ่น 1 Pierrot 20 ​เมษายน 2011
- Moshidora (TV) Production I.G 25 ​เมษายน 2011
- High School of the Dead (OAD) มาพร้อมมัะ​​เล่ม 7 Madhouse 26 ​เมษายน 2011
- SEX PISTOLS (OVA) อน 2 Frontier Works 26 ​เมษายน 2011
- Kaichou wa Maid-sama! (BD Only) อนพิ​เศษมาพร้อม BD ​แผ่น 10 J.C. Staff 27 ​เมษายน 2011
- Tofu Kozo (Film) 29 ​เมษายน 2011
- Koe de Oshigoto! (OVA) อน 2 Studio Gokumi 29 ​เมษายน 2011
- Onigamiden (Film) Studio Pierrot 29 ​เมษายน 2011
- Sockies: Frontier Quest (TV) Kachidoki Studio ​เมษายน 2011
พฤษภาม 2011
- Hoshi wo Ou Kodomo (Film) CoMix Wave 7 พฤษภาม 2011
- Black Lagoon: Roberta’s Blood Trail (OVA) อน 5 า 5 Madhouse 11 พฤษภาม 2011
- Asobi ni Iku yo! OVA SP (OVA) AIC Plus+ 18 พฤษภาม 2011
- Tezuka Osamu no Buddha -Akai Sabaku yo! Utsukushiku- (Film) Toei Animation 28 พฤษภาม 2011
- Appleseed XIII (TV) Production I.G 13 มิถุนายน 2011
- Valkyria Chronicles 3: Ta ga Tame no Juusou (OVA) อน 1 า 2 A-1 Pictures 29 มิถุนายน 2011
ฤู​ใบ​ไม้ผลิ 2011
- The Moon: Tsuki ga Hoshii to Oujo-sama ga Naita (Film) Union Cho ฤู​ใบ​ไม้ผลิ 2011
ที่มา : Akibatan
ติดตามเรื่องนี้
เก็บเข้าคอลเล็กชัน
ตอนก่อนหน้า ตอนถัดไป
ผู้อ่านนิยมอ่านต่อ ดูทั้งหมด
กำลังโหลด...