Particles.Js คือ Javascript Library สร้างโดยคุณ VincentGarreau โดยลักษณะของไลบรารี่ตัวนี้จะเป็นเหมือนลูกอนุภาคที่ลอยไปลอยมา และมีเส้นเชื่อมอนุภาคที่อยู่ไกล้กัน สามารถเปลี่ยนสี ขนาด และรูปร่างของอนุภาคได้
หากยังไม่รู้ว่าParticles.Jsคืออะไร มาดูตัวอย่างด้านล่าง
ก่อนอื่นเลยให้เข้าไปโหลด Particles.Js Library ตามนี้เลย https://vincentgarreau.com/particles.js/
โหลดมาแล้ว ทำการ Extract file particles.js-master.zip จากนั้นให้เราเข้าไปใน โฟล์เดอร์ particles.js-master แล้วจะเห็นไฟล์ particles.js และ particles.min.js ให้เรา Copy 2 ไฟล์นี้ไปไว้ใน โฟล์เดอร์ โปรเจคของเรา
หลังจากนั้นเรามาเริ่มเรียกใช้ Javascript Library กันเลย โดยการสร้างไฟล์ที่ชื่อว่า index.html ดังนั้นในโฟล์เดอร์ โปรเจคของเรา จะมี 3 ไฟล์ คือ particles.js particles.min.js และ index.html
เริ่มแรกเปิดไฟล์ index.html ของเราแล้วเรียกใช้ Library ดังนี้
1 |
<script src="particles.js"></script> |
ต่อมาเราจะเพิ่มในส่วนของ CSS
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
body { margin: 0; font: normal 75% Arial, Helvetica, sans-serif; } canvas { display: block; vertical-align: bottom; } #particles-js { position: absolute; width: 100%; height: 100%; background-color: #b61924; background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; } .count-particles { background: #000022; position: absolute; top: 48px; left: 0; width: 80px; color: #13e8e9; font-size: 0.8em; text-align: left; text-indent: 4px; line-height: 14px; padding-bottom: 2px; font-family: Helvetica, Arial, sans-serif; font-weight: bold; } .js-count-particles { font-size: 1.1em; } #stats, .count-particles { -webkit-user-select: none; } #stats { border-radius: 3px 3px 0 0; overflow: hidden; } .count-particles { border-radius: 0 0 3px 3px; } .center { font-size:50px; color: azure; position: absolute; width: auto; top: 50%; left: 50%; margin-top: -50px; margin-left: -50px; } |
ต่อมาเป็นส่วนของ Javascript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
<script> particlesJS("particles-js", { particles: { number: { value: 38, density: { enable: true, value_area: 946.9790382244144, }, }, color: { value: "#f2f2f2", }, shape: { type: "edge", stroke: { width: 0, color: "#000000", }, polygon: { nb_sides: 5, }, image: { src: "img/github.svg", width: 20, height: 20, }, }, opacity: { value: 0.5, random: false, anim: { enable: false, speed: 1, opacity_min: 0.1, sync: false, }, }, size: { value: 3, random: true, anim: { enable: false, speed: 40, size_min: 0.1, sync: false, }, }, line_linked: { enable: true, distance: 150, color: "#ffffff", opacity: 0.4, width: 1, }, move: { enable: true, speed: 6, direction: "none", random: false, straight: false, out_mode: "out", bounce: false, attract: { enable: false, rotateX: 600, rotateY: 1200, }, }, }, interactivity: { detect_on: "canvas", events: { onhover: { enable: true, mode: "repulse", }, onclick: { enable: true, mode: "push", }, resize: true, }, modes: { grab: { distance: 400, line_linked: { opacity: 1, }, }, bubble: { distance: 400, size: 40, duration: 2, opacity: 8, speed: 3, }, repulse: { distance: 200, duration: 0.4, }, push: { particles_nb: 4, }, remove: { particles_nb: 2, }, }, }, retina_detect: true, }); </script> |
หลังจากนั้น ก็มาเรียกใช้ Class ของ Particles.Js Library กำนเลย
1 2 3 4 5 6 7 8 9 10 11 12 |
<div id="particles-js" style=" background-color: rgb(44, 46, 67); background-size: 40%; background-position: 50% 10%; background-repeat: no-repeat no-repeat; "> <canvas class="particles-js-canvas-el" width="2884" height="906" style="width: 100%; height: 100%"> </canvas> <div class="center">Particles. Js</div> </div> |
จากนั้นไปดูผลลัพกันเลย
ต่อไปมาดูโค้ดเต็มที่เราเรียกใช้งาน
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
<!DOCTYPE html> <html> <head> <title>particles. js Library</title> <style> body { margin: 0; font: normal 75% Arial, Helvetica, sans-serif; } canvas { display: block; vertical-align: bottom; } #particles-js { position: absolute; width: 100%; height: 100%; background-color: #b61924; background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; } .count-particles { background: #000022; position: absolute; top: 48px; left: 0; width: 80px; color: #13e8e9; font-size: 0.8em; text-align: left; text-indent: 4px; line-height: 14px; padding-bottom: 2px; font-family: Helvetica, Arial, sans-serif; font-weight: bold; } .js-count-particles { font-size: 1.1em; } #stats, .count-particles { -webkit-user-select: none; } #stats { border-radius: 3px 3px 0 0; overflow: hidden; } .count-particles { border-radius: 0 0 3px 3px; } .center { font-size:50px; color: azure; position: absolute; width: auto; top: 50%; left: 50%; margin-top: -50px; margin-left: -50px; } </style> </head> <body> <div id="particles-js" style="background-color: rgb(44, 46, 67); background-size: 40%; background-position: 50% 10%; background-repeat: no-repeat no-repeat; "> <canvas class="particles-js-canvas-el" width="2884" height="906" style="width: 100%; height: 100%"> </canvas> <div class="center">Particles. Js</div> </div> <script src="particles.js"></script> <script> particlesJS("particles-js", { particles: { number: { value: 38, density: { enable: true, value_area: 946.9790382244144, }, }, color: { value: "#f2f2f2", }, shape: { type: "edge", stroke: { width: 0, color: "#000000", }, polygon: { nb_sides: 5, }, image: { src: "img/github.svg", width: 20, height: 20, }, }, opacity: { value: 0.5, random: false, anim: { enable: false, speed: 1, opacity_min: 0.1, sync: false, }, }, size: { value: 3, random: true, anim: { enable: false, speed: 40, size_min: 0.1, sync: false, }, }, line_linked: { enable: true, distance: 150, color: "#ffffff", opacity: 0.4, width: 1, }, move: { enable: true, speed: 6, direction: "none", random: false, straight: false, out_mode: "out", bounce: false, attract: { enable: false, rotateX: 600, rotateY: 1200, }, }, }, interactivity: { detect_on: "canvas", events: { onhover: { enable: true, mode: "repulse", }, onclick: { enable: true, mode: "push", }, resize: true, }, modes: { grab: { distance: 400, line_linked: { opacity: 1, }, }, bubble: { distance: 400, size: 40, duration: 2, opacity: 8, speed: 3, }, repulse: { distance: 200, duration: 0.4, }, push: { particles_nb: 4, }, remove: { particles_nb: 2, }, }, }, retina_detect: true, }); </script> </body> </html> |
และสุดท้ายนี้ หากมีข้อสงสัยติดต่อสอบถามได้ที่ เมนู ติดต่อ และไฟล์ตัวอย่างสามารถดาวน์โหลดได้ที่ด้านล่างนี้
ช่องทางการสนับสนุน
ธนาคารกรุงไทย
เลขบัญชี : 8610286703
ชื่อบัญชี : นายวีรชัย อ่อนมณี