อยากเริ่มเขียนเว็บด้วย React แบบคนอื่นบ้าง แต่ไม่รู้จะเริ่มต้นยังไงดี ? 😖
.
ไม่ต้องกังวลไป...เพราะวันนี้แอดสรุปมาให้แล้วจ้า กับสิ่งที่ต้องรู้ก่อนจะเริ่มต้นใช้ Library ที่ช่วยในการเขียนเว็บแอปพลิเคชันอย่าง React
.
มีอะไรต้องรู้บ้าง ? หากพร้อมแล้วไปดูกันเลย ~
.
🌟 พื้นฐาน HTML CSS JavaScript
.
ก่อนอื่นเราต้องมาสำรวจตัวเองก่อนว่าเราเข้าใจพื้นฐานพวกนี้แล้วหรือยัง ถ้ายังไม่เข้าใจ ควรจะไปศึกษาให้เข้าใจอย่างถ่องแท้ก่อนนะ ส่วนพื้นฐานที่แอดพูดถึงก็มีดังนี้
.
🔸 HTML เช่น HTML Element, Form, Table, และ Div เป็นต้น
🔸 CSS เช่น Styling, CSS Selectors และ Box Model
🔸 JavaScript เช่น variables, Conditional Statements, Loops, Data Types, และ DOM เป็นต้น
.
✨ NPM
.
รู้จักการใช้งาน NPM ซึ่งเป็นเครื่องมือที่ช่วยในการติดตั้ง อัปเดต กำหนดค่าต่าง ๆ และรันคำสั่งบางอย่างผ่าน Terminal เพื่อใช้งานคำสั่ง และ Library บนโปรเจกต์ React ของเรานั่นเอง
.
อ่านวิธีการใช้งานเพิ่มเติมได้ที่นี่ 👇
Link : https://www.npmjs.com/
.
✨ React Concept
.
เมื่อเราเรียนรู้พื้นฐานและฝึกฝนจนเชี่ยวชาญแล้ว ขั้นตอนต่อมาเราก็จะต้องเรียนรู้และทำความเข้าใจโครงสร้างและการทำงานของ React เช่น
.
🔹 Create React App - เป็นการตั้งค่าสภาพแวดล้อมและเครื่องมือต่าง ๆ ให้เหมาะสมกับการพัฒนาโปรเจกต์บน React เพื่อให้เราสามารถใช้คุณสมบัติของ JavaScript ได้อย่างเต็มประสิทธิภาพนั่นเอง !
.
อ่านวิธีการติดตั้งแบบเต็ม ๆ ได้ที่นี่ 👇
📑 https://reactjs.org/docs/create-a-new-react-app.html
.
🔹 JSX - เป็นส่วนเสริมของ JavaScript ที่ทำให้เราสามารถจัดการกับ UI ใน React ได้อย่างง่ายดาย ซึ่งจะมี Syntax คล้าย ๆ กับ HTML
.
สามารถอ่านเรื่อง JSX แบบเต็ม ๆ ได้ที่นี่ 👇
📑 https://reactjs.org/docs/introducing-jsx.html
.
🔹 Virtual DOM - เป็นตัวที่ช่วยจัดการ Object และ Element ต่าง ๆ บน React เปรียบเสมือนพิมพ์เขียวของ DOM ถ้าหากมีการแก้ไขหรือเปลี่ยนแปลง Object บน React มันก็จะไม่กระทบกับ DOM ทั้งหมด เพราะมันจะเปลี่ยนแปลงเฉพาะ Object ที่มีการอัปเดตเท่านั้น ทำให้การแสดงผลมีความรวดเร็วมากขึ้นนั่นเอง
.
สามารถอ่านเรื่อง Virtual DOM แบบเต็ม ๆ ได้ที่นี่ 👇
📑 https://reactjs.org/docs/faq-internals.html
.
🔹 Props & State - Props (Properties) เปรียบเสมือนแท็กใน HTML เช่น src, href, หรือ class แต่ความพิเศษของมันก็คือทำให้ React Component สามารถส่งค่าต่าง ๆ ระหว่างกันได้ ส่วน State จะแตกต่างกับ Props เพราะมันจะเป็นการเก็บค่าเพื่อใช้ใน Component นั้น ๆ เท่านั้น
.
สามารถอ่านเรื่อง Props & State แบบเต็ม ๆ ได้ที่นี่ 👇
📑 https://reactjs.org/docs/faq-state.html
.
🔹 Conditional Rendering - เป็นการแสดงผล Element ต่าง ๆ บน UI แบบมีเงื่อนไขนั่นเอง โดยใช้ตัวดำเนินการใน JavaScript เช่น if...else เป็นต้น
.
สามารถอ่านเรื่อง Conditional Rendering แบบเต็ม ๆ ได้ที่นี่ 👇
📑 https://reactjs.org/docs/conditional-rendering.html
.
🔹 React Hook - เป็น Functions เจ๋ง ๆ ใน React ซึ่งเป็นฟีเจอร์ใหม่ที่มีใน React v16.7.0-alpha -ข้อดีของมันก็คือทำให้เราสามารถเรียกใช้ State ต่าง ๆ ใน React แบบไม่ต้องเขียน Class ให้เมื่อยมือ! เป็นการเพิ่มคุณสมบัติของ Component ไม่ว่าจะ Test หรือ Refactor ก็ทำได้ง่าย ๆ
.
สามารถอ่านเรื่อง React Hook แบบเต็ม ๆ ได้ที่นี่ 👇
📑 https://reactjs.org/docs/hooks-intro.html
.
✨ API
.
เรียนรู้โครงสร้าง และวิธีการดึงข้อมูลจาก API โดยต้องเข้าใจการใช้งานฟังก์ชันใน JavaScript เพื่อช่วยในการดึงข้อมูลและนำมาใช้ภายในโปรเจกต์ หรืออาจจะใช้เครื่องมืออย่าง Axios ซึ่งเป็นอีกหนึ่ง Library ยอดนิยมที่ช่วยให้เราดึงข้อมูลจาก API ได้อย่างง่ายดาย !
.
เพื่อน ๆ สามารถอ่านวิธีการใช้งาน Axios ได้ที่นี่ 👇
Link : https://www.npmjs.com/package/axios
.
✨ Server-side Rendering
.
รู้จักการใช้งานเครื่องมือที่ช่วยในการแสดงผลฝั่ง Server เช่น Next.js, After.js, Rogue ซึ่งเหล่า React Dev ส่วนใหญ่จะนิยมใช้เจ้า Next.js เพราะใช้งานง่าย ไม่ต้อง Config อะไรเพิ่มเติมและช่วยให้เราสามารถเขียนเว็บได้สะดวก รวดเร็วมากขึ้นนั่นเอง !
.
✨ Styling UI
.
ใช้แนวคิด CSS มาช่วยให้เราออกแบบ วาง Layout และจัดองค์ประกอบบนหน้าเว็บไซต์ ซึ่งในปัจจุบันก็มีเครื่องมือต่าง ๆ ที่จะช่วยให้เราเขียน CSS ได้ง่ายมากขึ้น ไม่ว่าจะเป็น Material UI และ TailwindCSS นั่นเอง
.
และเมื่อเราได้เรียนรู้ทุกหัวข้อที่แอดกล่าวมาแล้ว เราก็เริ่มต้นทำโปรเจกต์ React กันได้เลย !! ซึ่งทางทีมแอดเคยทำสรุปการใช้งาน React ไว้ให้แล้ว หากสนใจสามารถกดเข้าไปอ่านกันได้เลย ~
📑 Link : https://www.borntodev.com/2020/07/15/react-101/
.
หวังว่าจะเป็นประโยชน์กับเพื่อน ๆ ที่กำลังเริ่มต้นเขียน React นะ หากชอบเนื้อหานี้ อย่าลืมกดไลก์ กดแชร์ เพื่อเป็นกำลังใจให้พวกเราด้วยล่ะ 😁
.
borntoDev - 🦖 สร้างการเรียนรู้ที่ดีสำหรับสายไอทีในทุกวัน
#React #javascript #ฺBorntoDev
同時也有81部Youtube影片,追蹤數超過0的網紅FERNTUBE (Fernanda Ly),也在其Youtube影片中提到,Me wearing (almost) all of my shoes including brand and model names! Linky links for where to buy them or similar are below ~ It has been a difficul...
「html if else」的推薦目錄:
- 關於html if else 在 BorntoDev Facebook 的最佳貼文
- 關於html if else 在 ลงทุนแมน Facebook 的最佳貼文
- 關於html if else 在 Kewang 的資訊進化論 Facebook 的最佳貼文
- 關於html if else 在 FERNTUBE (Fernanda Ly) Youtube 的精選貼文
- 關於html if else 在 bongqiuqiu Youtube 的最佳解答
- 關於html if else 在 Khainina Khalil Youtube 的最讚貼文
- 關於html if else 在 [問題] 請問html網頁能否用if else語法 - PTT 問答 的評價
- 關於html if else 在 JavaScript if else Statement By Examples 的評價
- 關於html if else 在 HTML IF Statement - Stack Overflow 的評價
- 關於html if else 在 3 控制流程| 資料科學與R語言 的評價
- 關於html if else 在 JavaScript if else (tutorial) - YouTube 的評價
- 關於html if else 在 PHP : Better way to print html in if-else conditions - Software ... 的評價
html if else 在 ลงทุนแมน Facebook 的最佳貼文
กรณีศึกษา ธุรกิจแบรนด์เนมมือสอง ออนไลน์ / โดย ลงทุนแมน
“ถ้ามีคนขายสินค้าแบรนด์หรูมือสองในราคาเพียงไม่กี่พันบาท
เราจะมั่นใจได้อย่างไรว่า สินค้าชิ้นนั้นไม่ใช่ของปลอม”
...Continue ReadingCase study of used brand name business online / by investing man
" if someone sells used luxury brand products for only a few thousand baht.
How can we make sure that item is not fake "
This is a problem for both seller and buyers in the brand name market.
Because sellers want to sell their products ASAP
The buyer is not confident in the product.
But if we can prove that the item is authentic
Trading Luxury Brands is no longer difficult.
This idea has become the beginning of starttoi. Cuddle worth more than ten thousand baht.
Named the real
What kind of business model does the realreal have?
And how did this happen
Invest, man will tell you about it.
The story starts with Mr. Julie Wainwright is an American businesswoman who has passed through the big monsoon of life.
That's the end of marriage with a pet business that goes bankrupt in the same day.
After that, she gets to live each day with exercise and painting.
When she had a better state of mind, she decided to go back to the company again.
But it turns out the work that I don't inspire her living.
Time goes by..
Mr. Julie feels like it's time to do something to change your life.
And a big coincidence happened.
Ms. Julie noticed her friend is buying used branded clothes from real stores instead of shopping online via Ebay.
The main reason is that she's not sure to get the real one if you buy it somewhere else.
Which brand name products are expensive. It wouldn't be good if the buyer is fooled.
When you hear the reason, Julie gets back to find out about luxury brands.
Which she found the luxury brand market in the United States has a total of $ 50,000 million per year.
When everything is perfect, Julie decided to start a business, a second-hand luxury brand trading website called the realreal that will ensure that it is real.
The Realreal business was founded in 2011
In the beginning, she used over 60 luxury brands from her own wardrobe, put them on the website.
After that, she started contacting customers who wanted to sell brand products such as Chanel, hermès, Louis Vuitton, Cartier, Rolex and van Cleef & Arpels.
So where does the real income come from?
The Realreal deduction will deduct 30 % from the sale price.
The Realreal will pick up items from the seller. Check if it's real. After that I will sell the product on the website.
In the first year, the realreal had sales up to $ 10 million.
And raised over $ 173 million in the next few years.
After that, the business keeps growing.
2017 the realreal sales are $ 500 million
The Realreal app downloads over 160,000 times per month
There are over 950 employees together.
Recently, the realreal has been assessed up to $ 450 million or around 14,000 million baht.
On the day when everything of life falls apart
It's not strange that we feel discouraged or hopeless.
But in the end, life will go on.
To find the dream of a new life again
Which is not sure that dream is due to something near.
If we take notice and pick it up
Could be successful. Become a business worth ten thousand million.
Just like you Julie who founded the realreal is possible..
“I had to finally say nobody is going to give me my dream job,
so I better figure it out myself.” - Julie Wainwright
"nobody can give me a dream job so i have to find it myself" - Julie Wainwright Founder the realreal
----------------------
Follow a variety of stories from great authors in blockdit app.
Besides, we can write ourselves and earn money in here.
Download the app at blockdit.com
Order the book to invest man 10.0 at
Lazada: https://www.lazada.co.th/products/100-i312324208-s559866635.html?mp=3&spm=0.0.productPromotion_13579257.1
Shopee: https://shopee.co.th/ลงทุนแมน-หนังสือ-10.0-i.116732911.2099369914
----------------------
References
-https://www.cnbc.com/2017/07/20/a-60-year-old-entrepreneur-took-her-business-from-zero-to-500-million.html
-https://pitchbook.com/
-https://www.crunchbase.com/organization/the-realreal#section-patents-and-trademarks-by-ipqweryTranslated
html if else 在 Kewang 的資訊進化論 Facebook 的最佳貼文
繼之前分享如何實作「窮人版 ELK」之後,再來分享一下這個服務裡面的 DSL 是如何實作的。會想到要為這個服務做 DSL,主要是小編雖然已經把 Impala 產生的資料利用一些工具轉成 PNG 圖檔,但動作太繁雜,所以想把這些過程用 DSL 來表示,工程師只要會下 SQL 就能把資料轉成 PNG 圖檔了。
其實對於 DSL,有在 follow 粉絲頁的朋友應該有注意到,小編很久以前就有一個屬意的方案了,那就是 MSON。它結合了 Markdown 以及 JSON,所以不只人類易讀,機器也易讀。只不過 MSON Parser 一直都是殘缺不全,所以沒辦法讓小編完整的實作 DSL,這個方案就被捨棄了。
另一個也很適合拿來做 DSL 的就是 YAML 了,個人覺得跟 MSON 比起來易讀性稍低一點,但已經是目前還不錯的實作方式,所以就以這個來做為「窮人版 ELK」的 DSL 實作方案。
DSL 已經把所有轉換的細節都隱藏起來了,工程師只要先自己在 Impala 上撰寫正確的 SQL 指令,其他動作只要把必要欄位填完就可以了。下面是必要欄位的說明:
* SQL:要在 Impala 裡面執行的 SQL 指令,其中有用 ":VAR" 包起來的變數名稱,表示是從 INPUT 欄位取得
* CHART:highcharts 的圖表格式,DSL 目前支援 column (長條圖)、pie (圓餅圖)
* INPUT:這是一個陣列,表示這個變數名稱是從外部操作時取得,另外後面的 "date" 為資料型態,目前支援的類型為 HTML 的 input[type]
* OUTPUT:產生 PNG 圖檔時的欄位資訊,如 X 軸是從 Impala 的哪個欄位取得,顯示在圖表上的名稱要叫什麼
至於轉換細節又是另一件麻煩事,將 DSL 轉成最後的圖檔又經過了不少步驟:
1. js-yaml:雖然說 YAML 很適合拿來做 DSL,但 JSON 還是目前大家最常用的格式。所以當然要先把 YAML 轉成 JSON 這樣才好操作 XD
2. jq:轉換過程中 jq 幫了小編很大的忙,官網寫著這是一套輕量且靈活的命令列 JSON 處理工具。無論要對 JSON 取 key、取 value、取 length、做 group by、做 sort by、if-else、while-loop 都可以,就是很強大。所以小編就拿這個將 YAML 轉換完的 JSON,用一堆奇怪的語法把資料轉換成功。
其實在轉換過程最麻煩的不是操作 JSON,最麻煩的在小編不太會寫 bash script 啊!!!尤其是一堆變數轉換的過程,一下子用 ${},一下子用 $(),還有 ${[$k]} 的這種寫法,看了頭好痛 Orz
最後把 jq 轉完的資料丟給前一篇提到的那些工具,就可以完美把 PNG 圖檔產生出來了,第二篇的「窮人版 ELK」文章到此也就結束了。其實這個專案還有另一個跟圖表無關的功能,那就是即時觀看 API 發送歷程,如果有第三篇的話再來分享一下好了。
* 如何實作「窮人版 ELK」:https://www.facebook.com/kewang.information/posts/2085843121692051
* 如何使用 MSON 的幾個方向:https://www.facebook.com/kewang.information/posts/1940647046211660
* jq:https://stedolan.github.io/jq
#mson #dsl #yaml #json #jq
html if else 在 FERNTUBE (Fernanda Ly) Youtube 的精選貼文
Me wearing (almost) all of my shoes including brand and model names!
Linky links for where to buy them or similar are below ~
It has been a difficult battle with Adobe and Premiere Pro, but I was also a little busy with work, hence the slow update - forgive me! On the other hand, I have some work bts vids ready to edit as well 🥰
I'll be finding new homes for some pairs and donating some others ~
Ngl, I'm worried that sharing the names of what I collect will make finding them even harder (not that I need any more shoes lol)
It's a longer video this time so thank you so much for watching! Especially if you get through the entire thing ❤
ーーーーーーー
✩ Shoes (in order of appearance):
A lot aren't available to purchase any more; in that case I've included links to similar pairs instead.
- Simone Rocha sandal (unavailable - similar https://bit.ly/3tHfzPX)
- Coach sandal (unavailable - similar https://bit.ly/2QRyysf or https://bit.ly/3tLPIpV or https://bit.ly/3dGN1QT)
- Vivienne Westwood platform (unavailable - similar https://bit.ly/3tI3FFb)
- Vivienne Westwood x Melissa rhs (https://bit.ly/3azhTku)
- Vivienne Westwood heel (unavailable)
- Vivienne Westwood rhs (https://www.viviennewestwood.com/en/women/shoes/platforms/rocking-horse-pagan-sandal-black-black-7301001041009N402.html)
- Vivienne Westwood 3 strap (https://www.viviennewestwood.com/en/women/shoes/flats/roman-3-strap-tan-9014W380086.html)
- Sies Marjan heel (unavailable - similar https://bit.ly/3voZoY3 or https://bit.ly/32E4PpG)
- Aldo heel (unavailable - similar https://bit.ly/3axsc8C or https://bit.ly/3xhwF95 or https://bit.ly/3xjnpRK)
- Nine West heel (unavailable - similar https://bit.ly/32AvR0W or https://bit.ly/3dIBEIa)
- La Bucq sandal (https://labucq.com/products/chan-nero-emboss)
- Stella McCartney sandals (unavailable - occasionally appears on ebay)
- El Dantes platform (unavailable - similar https://bit.ly/3v8Y9fi)
- Jeffrey Campbell 3 strap heel (unavailable - similar https://bit.ly/2RQEan7 or https://bit.ly/3dIDoBc or https://bit.ly/3dGUeAD
- Gucci gladiator shoe (unavailable - similar https://bit.ly/2QKStcs)
- Dr. Martens boots (https://bit.ly/3veN0JI)
- Demonia creepers (leather https://bit.ly/3sID7SY or suede https://bit.ly/2PdXSZh)
- Underground boot (https://underground-england.com/product/evolution-jungle-boot-black-leather/)
- y-3 boot (low vers. https://bit.ly/3sFPYFB)
- y-3 sock shoe (unavailable - similar https://bit.ly/32BGjp9 or https://bit.ly/3tOb5XS)
- Converse (unavailable - similar https://bit.ly/3xk1h9V)
- Rothco military boot (https://bit.ly/3ncuuiH)
- DKNY boot (unavailable - similar https://bit.ly/3nckoht or https://bit.ly/3xjgubc or https://bit.ly/3tK0HjA - or https://bit.ly/3en2DYP)
- Adidas x Raf sneaker (unavailable https://bit.ly/3dHxmRf - similar https://bit.ly/3sHljI3)
- Balenciaga sneaker (https://bit.ly/3dHxUqh)
- New Balance sneaker (unavailable - similar https://bit.ly/3eDsbkT)
- Stella McCartney boots (https://bit.ly/3vgMb3n or https://bit.ly/3n90xjs or https://bit.ly/3nckoht)
- Dr. Martens boot (https://bit.ly/32A5TuC or https://bit.ly/2RZJN2J)
- Alexander Wang boot (unavailable - similar https://bit.ly/2QgX1HS or https://bit.ly/3sCWzk1)
- Birkenstock sandals (https://bit.ly/2Pdtqyp)
- Birkenstock 3 strap (https://bit.ly/3nctfjj)
ーーーーーーー
#shoecollection #ferntube #fernandaly
✩ Instagram: @warukatta
✩ Email: ferntube22@gmail.com
Please contact my agencies in regards to model work
ーーーーーーー
✩ Music:
No. 51 - CFEQ (https://thmatc.co/?l=30D032D5)
✩ Subtitle file (https://drive.google.com/file/d/1o5B3mgGsfUMGf7Ki9GbRb0yO5n1Iob1m/view?usp=sharing)
*** As Youtube has unfortunately discontinued community contributions, here is the script for anyone still willing to do subs for other languages. If you replace the english text with your language and email me the file, I'll be more than happy to upload it for everyone to see. Thank you for your helpful contributions until now!
✩ FTC:
All items by Coach, La Bucq, and Y-3 were gifted to me; Underground boots were received in exchange for an Instagram post (archived).
Everything else was bought with my money.
However these brands are otherwise unaffiliated with this video and all thoughts and opinions are my own.
Some links are affiliate links
i.e. I will make some money off purchases.
html if else 在 bongqiuqiu Youtube 的最佳解答
Welcome back to Qenggai, where I sit down and have a chat with the most special people in my life!
Today, I have with me my younger sister! We’ll be talking about our childhood and all the crazy memories we have together, including, maybe, some sisterhood love (aka pranking/bullying).
And to make up for all my bullying, I thought I’d give her some gifts! Got these items from Lazada, and you're in luck because Lazada is having their 9th Birthday Sale! So, add to cart now and check out on 27 March with stackable vouchers and free shipping for maximum savings!
Shop Lazada's 9th Birthday Sale now: http://lzd.co/lazada9birthdaysurprise
Who else should I invite on Qenggai? Let me know in the comments below and don’t forget to subscribe so you won’t miss out on future episodes of Qenggai!
0:00 Intro
0:26 The Story Behind Her Nickname
1:12 Our Childhood Stories
11:02 Our Children Now
11:47 A Surprise for My Sister!
If you want to gift your loved ones, check out the items I got:
L.O.L. Surprise Lights Glitter https://www.lazada.sg/-i1002028429-s3651508838.html?spm=ba_lzd_pc.sg-product-performance.0.0.5d5f4564x6pcCv&urlFlag=true
The Body Shop British Rose Fresh Plumping Mask 75ML
https://www.lazada.sg/products/the-body-shop-british-rose-fresh-plumping-…
Blackmores Omega High DHA 60caps [New Launch] https://pdp.lazada.sg/products/i1267472441.html?spm=a1zawe.20038917.content_wrap.2.31fa4edf5x13In
VICHY Aqualia Thermal Rehydrating Gel Cream 50ml
https://www.lazada.sg/products/vichy-aqualia-thermal-rehydrating-gel-cream-50ml-with-hyaluronic-acid-for-normal-combination-skin-i235308966-s360859705.html?spm=a2o42.searchlist.list.1.15ad5ae7KyH6Yl&search=1&freeshipping=1
Eu Yan Sang Drip Chicken Essence 6s x60g
https://www.lazada.sg/products/eu-yan-sang-drip-chicken-essence-6s-x60g-i450864533-s1203090554.html?spm=a2o42.seller.list.34.c0a227549bQ29L&mp=1&freeshipping=1
Thank you to our partners for equipping Qenggai! Visit their pages at:
Canon Cameras:
https://www.facebook.com/CanonSGOfficial
Zoom:
https://www.facebook.com/citymusicsg ; https://www.facebook.com/ZoomSoundLab.SG/
Deity Mics:
https://www.facebook.com/deitymicsasia
html if else 在 Khainina Khalil Youtube 的最讚貼文
Hey Guys!
How's Ramadhan so far? It's 10 days to raya & are you all prepared??
Well, here is one of my fav look & if you're the type who goes all out masa raya then you can try this look! Not necessarily kena guna all these products, it's really up to you!
But my thought on these products after about 3 time using them is, they're actually pretty good. I love them, maybe the Nars orgasm palette - if you wanna put it on your eyelid- make sure to top it with powdered shimmer shadow, or else it'll crease as hell.
So far so good! Will update if i need to on Instagram!
See you in another video!
Thanks for watching & don't forget to subscribe ok! Leave your thoughts too!
Last but not least, Thank you for watching!
Leave a love, I'll love you back ;)
Find me on Instagram: @khaininakhalil ?
PRODUCTS USED:
NARS ORGASM COLLECTION:
(Available in stores & sephora)
https://www.narscosmetics.com/USA/orgasm-collection?prfcountry=USA&prfmarket=USA
LAURA MERCIER PRODUCTS:
(Available in stores & sephora)
https://www.lauramercier.com/
https://www.sephora.my/products/laura-mercier-translucent-loose-setting-powder/v/translucent
https://www.sephora.my/products/laura-mercier-smooth-finish-foundation-powder-spf20/v/1-light-beige-with-yellow-undertones
https://www.sephora.my/products/laura-mercier-foundation-primer/v/default
https://www.sephora.my/products/laura-mercier-matte-radiance-baked-powder/v/bronze-01
https://www.sephora.my/products/laura-mercier-candleglow-soft-luminous-foundation/v/1c1-shell-fair-with-cool-undertones
FOUNDATION SHADE: 3W2 GOLDEN
MAKE UP FOR EVER:
https://www.makeupforever.com/my/en-my/make-up/face/concealer/ultra-hd-concealer-0
CONCEALER SHADE: 33
SIGMA BEAUTY:
https://www.sigmabeauty.com/warm-neutrals-volume-2.html
https://www.sigmabeauty.com/e35-tapered-blending.html
PRETTY VULGAR:
https://www.prettyvulgar.com/shop/eyes.html
https://www.sephora.my/products/pretty-vulgar-the-ink-gel-eyeliner/v/02-plot-twist
URBAN DECAY:
(Available in stores & sephora)
https://www.sephora.my/products/urban-decay-brow-blade/v/dark-drapes
ANASTASIA BAVERLY HILLS:
https://www.anastasiabeverlyhills.com/
https://www.anastasiabeverlyhills.com/mini-matte-lipstick-set/ABH01-33102.html
SHADE: COCONUT
LASHES:
LASHBAR MALAYSIA CODE (857)
-can search on instagram & available at midvalley.
html if else 在 JavaScript if else Statement By Examples 的推薦與評價
The if statement is probably one of the most frequently used statements in JavaScript. The if statement executes a statement or block of code if a condition is ... ... <看更多>
html if else 在 [問題] 請問html網頁能否用if else語法 - PTT 問答 的推薦與評價
請問html能否用if else語法如果某變數= "" 就不顯示核取方塊否則就顯示核取方塊我上網查了一下好像可以但我怎麼試都不成功<if condition = " t01 eq ... ... <看更多>