Untuk mencipta snap skrol mendatar, kami akan menggunakan jenis skrol−snap−untuk menghasilkan kesan snap. Sifat tatal−snap−type dan scroll−snap−align menentukan jenis gelagat snap yang kita mahu gunakan dan penjajaran mata snap, masing-masing.
Nilai sifat tatal−snap−type "x mandatori" menunjukkan bahawa kita mahu snap secara mendatar, dan nilai tatal−snap−align harta "start" menunjukkan bahawa kita mahu tanda snap sebaris dengan permulaan setiap bahagian.
可以使用JavaScript库(如ScrollSnap)来实现此功能,该库提供了更高级的功能和自间定了
Pilihan lain ialah rangka kerja CSS seperti Bootstrap menyediakan komponen terbina dalam untuk snap skrol mendatar dan grid CSS atau susun atur kotak flex untuk mencipta bahagian mendatar yang secara automatik menyentap satu sama lain.算法
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Horizontal Scroll Snap</title> <!---------------------- CSS ----------------------------> <style> /* Set the width of the container element to 100% of its parent element's width, and the height to 100% of the viewport height */ .container { width: 100%; height: 100vh; /* Enable horizontal scrolling when the content overflows the container */ overflow-x: scroll; /* Enable mandatory horizontal scroll snapping */ scroll-snap-type: x mandatory; } /* Set the width of each section to 100% of its parent element's width, and the height to 100% of the viewport height */ .section { width: 100%; height: 100vh; /* Display each section as an inline block element to allow horizontal placement */ display: inline-block; /* Set the snap alignment of each section to the start of the container */ scroll-snap-align: start; } </style> </head> <body> <!-- The container element will contain the sections that can be scrolled horizontally --> <div class="container"> <!-- Each section is wrapped inside an <h1> tag --> <h1><div class="section">Section 1</div></h1> <h1><div class="section">Section 2</div></h1> <h1><div class="section">Section 3</div></h1> <h1><div class="section">Section 4</div></h1> </div> </body> </html>
Kesimpulan
Atas ialah kandungan terperinci Buat tangkapan skrol mendatar menggunakan HTML dan CSS. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!