นิยาย Dek-D พบกับประสบการณ์อ่านที่ดียิ่งขึ้น
แบบไม่มีโฆษณา ที่แอปนิยาย Dek-D
Dek-D.com ใช้คุกกี้เพื่อพัฒนาประสบการณ์ของผู้ใช้ให้ดียิ่งขึ้น เรียนรู้เพิ่มเติมที่นี่ ยอมรับ
ลำดับตอนที่ #87
ตั้งค่าการอ่าน
ค่าเริ่มต้น
- เลื่อนอัตโนมัติ
คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
` : ''} `).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)') } } }); }); })()
ลำดับตอนที่ #87 : บทที่16 แลกได้ 4
-
อัปเดตล่าสุด 7 ม.ค. 65
บทที่16 จะอัปให้อ่านฟรี 1 วัน เป็นบทสุดท้ายนะคะ
ตั้งแต่บทที่17 จะติดเหรียญทันทีค่ะ
e-book หมดเวลารัก
วางจำหน่ายแล้วนะคะ
หนังสือ หมดเวลารัก มีขายตามร้านค้านายอินทร์ค่ะ
ใยไหมไม่ลืมที่จะสวมเสื้อชูชีพอีกครั้ง ก่อนนอนเธอได้ถอดพาดไว้ตรงที่นั่งด้านล่าง อาจเพราะว่ายน้ำไม่เป็นอะไรที่พอจะเซฟตัวเองได้ก็เซฟไว้ก่อน
ตอนนี้เหมือนเรือหยุดอยู่กับที่ แต่ก็ยังมีลอยตามคลื่นที่ซัดมา เดาว่าน่าจะถึงจุดที่ชมพระอาทิตย์ตกแล้วกระมัง หญิงสาวจึงเร่งฝีเท้าไปยังด้านหน้าของเรือ พบว่าทุกคนกำลังยกโทรศัพท์มือถือขึ้นมาถ่ายรูปกันยกใหญ่
เสียงบรรเลงของเพลงที่ทางพนักงานเปิดนั้นเข้ากับบรรยากาศตอนนี้เป็นอย่างดี ใยไหมมองหามุมที่จะถ่ายรูปชัดๆ เพื่อที่จะส่งอวดใบหม่อนที่ร่ำร้องอยากจะมาจนวางแผนว่ายังไงภายในปีนี้ต้องมาให้ได้
ปลายเท้าเรียวเล็กหลบฉากผู้คนมาอีกด้าน แม้มุมไม่สวยเท่าด้านหน้าของเรือแต่ก็มองชัดกว่า
มันสวยจริงๆ สวยจนเธอคิดว่ากล้องถ่ายรูปไม่สามารถบันทึกความงดงามสิ่งตรงหน้าได้ถึงเสี้ยวที่สายตาตัวเองได้จับจ้องในตอนนี้
พอจะหยิบโทรศัพท์ขึ้นมาถ่าย กลับต้องขมวดคิ้วเพราะล้วงกระเป๋ากางเกงไปมีแต่ความว่างเปล่า
สงสัยน่าจะลืมไว้ตรงที่นอน...
ใยไหมส่ายหน้าระอาความเบลอของตัวเองก่อนที่จะเร่งฝีเท้ากลับไปยังด้านหลัง ระยะเวลาที่พระอาทิตย์ตกดินนั้นรวดเร็วปานสายลม หากช้าคงได้พลาดบันทึกภาพเพื่อส่งให้ใบหม่อนแน่ๆ
ทางเดินด้านข้างของเรือนั้นค่อนข้างแคบ เธอจึงผ่อนฝีเท้าลงเล็กน้อย อาจเพราะความเมาเรือยังคงมีอยู่หรืออาจจะเพราะเจอคลื่นลูกใหญ่ ใยไหมถึงได้รู้สึกว่าพื้นที่ยืนอยู่นั้นมันโคลงเคลงมากกว่าเดิมจนเหมือนทรงตัวไม่อยู่ ฝ่ามือเล็กพยายามไขว่คว้าของใกล้มือแต่กลับคว้าได้แค่อากาศ
ใจเธอหล่นวูบรู้สึกโหวงในช่องท้องด้วยความตกใจ เพียงเสี้ยววินาทีร่างทั้งร่างของเธอร่วงสู่ผืนน้ำพร้อมกับเสียงกรีดร้องจากลำคอ
ตู้ม !
ความรู้สึกแรกที่ได้รับนั้นคือความกลัวตาย มวลน้ำมหาศาลที่ทะลักเข้ามาส่งผลให้เธอแสบในลำคอ กระนั้นก็ยังพยายามเปล่งเสียงร้องขอความช่วยเหลือ แม้มีเสื้อชูชีพแต่ดูเหมือนคลื่นจะซัดพาเธอห่างออกจากเรือมากขึ้นทุกที
ดวงอาทิตย์กำลังลาลับขอบฟ้า จากนั้นความมืดจะเริ่มครอบงำ ดนตรีบนเรือนั้นอาจกลบเสียงของเธอจนหมด
น้ำใสๆ เอ่อล้นขอบตา ไม่ว่าจะพยายามตีแขนตีขาว่ายกลับเข้าหาเรือมากเท่าไรก็ไม่เป็นผล ความหวาดกลัวแทรกซึมเข้ามาจนทำให้เธอประคองสติตัวเองไม่ไหว
อาจจะเป็นภาพจากจิตใต้สำนึก มันพร่าเบลอเหมือนเห็นใครบางคนที่คุ้นตาจ้องมาทางนี้
ผู้ชายคนนั้นตะโกนก้องสุดเสียงราวกับสัตว์ป่าที่บ้าคลั่ง ก่อนที่เขาจะกระโจนลงน้ำ พยายามแหวกว่ายมาหาเธอทั้งที่ตัวเองไม่มีอุปกรณ์ใดๆ ติดตัว
“ใยไหม!”
ร่างทั้งร่างของเธอถูกกระชากเข้าสู่อ้อมแขนของคนที่มาช่วย
แวบหนึ่งใยไหมรู้สึกว่ามันเป็นสิ่งที่เธอคุ้นเคย แต่ก็เลือนรางในความรู้สึกราวกับมันห่างหายจากเธอไปเสียนาน น้ำเสียงร้อนรนนั่นก็อีก ได้ยินแล้วเหมือนได้ย้อนกลับไปในวันวานยังไงชอบกล
“น้องไหม” ณกรพยายามเรียกคนตัวเล็ก “ได้ยินพี่หรือเปล่า
ภาพตรงหน้าเริ่มชัดเจน มองเสี้ยวหน้าชายหนุ่มซึ่งมือข้างหนึ่งโอบกอดเธอ อีกข้างพยายามแหวกว่ายไปทางเรือด้วยสีหน้าไม่สู้ดี
เป็นเขาเองหรอกเหรอ ?
“พี่มาร์ช...” หญิงสาวสำลักน้ำทะเลจนรู้สึกแสบคอไปหมด
มีคนมาช่วยเธอแล้ว มันไม่ใช่ความฝันหรือสิ่งที่คิดไปเอง นอกจากนั้นเธอยังเห็นว่ามีคนกระโดดลงมาช่วยอีกหนึ่งคน...เหมือนจะเป็นเขมราช
ทุกอย่างดูวุ่นวายไปหมด
“มึงรับไหมไปที” ร่างของเธอถูกดึงไปอีกทอดพร้อมกับเสียงห่วงใย
เขมราชพาใยไหมมาถึงเรือ โดยที่พิรัชย์รีบดึงเจ้าของร่างบางขึ้นมาพร้อมกับตบแก้มหญิงสาวเพื่อเรียกสติ
ใยไหมบอกเบาๆ ว่าเธอไม่เป็นอะไรแล้วคงเพราะมีเสื้อชูชีพช่วยไว้อยู่
“โอเคใช่หรือเปล่าไหม” ทุกคนรุมเข้ามาถามไถ่
“ไม่เป็นไรแล้วค่ะ” เธอตอบให้พวกเขาคลายความกังวล พลางมองหาณกรที่มาช่วยเธอคนแรก “พี่มาร์ชล่ะคะ”
แต่กลับไม่เจอ...
ติดตามเรื่องนี้
เก็บเข้าคอลเล็กชัน
ตอนก่อนหน้า ตอนถัดไป #88
ผู้อ่านนิยมอ่านต่อ ดูทั้งหมด
กำลังโหลด...