Build and Deploy Ecommerce Website With HTML CSS JavaScript | Responsive Shopping Website Part 2

Build and Deploy Ecommerce Website With HTML CSS JavaScript | Responsive Shopping Website Part 2

Tech2 etc

2 года назад

359,038 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@anooshqalandar900
@anooshqalandar900 - 23.12.2023 20:55

Hi, Thanks a lot for your tutorials. This is great for us - beginners. Can you please make a video or explain how can we create product details page for different products? Like right
now when I click on any product it takes me to that single product detail page that we created following your video. Much appreciated.

Ответить
@sagardhuri5999
@sagardhuri5999 - 21.12.2023 18:30

sir when i created a tutorial folder and then created a shop.html file my all images were gone

Ответить
@powerthesolution
@powerthesolution - 14.12.2023 22:06

Onde eu consigo o back-end desse curso?

Ответить
@abeergaber6374
@abeergaber6374 - 14.12.2023 05:03

thank you very much for your great tutorial but i have a problem with the JavaScript codes it never works i write it exactly as you did but it never works, please tell me why?

Ответить
@miguelangelcordovaledezma6113
@miguelangelcordovaledezma6113 - 12.12.2023 15:59

gracias

Ответить
@adamchacha2184
@adamchacha2184 - 10.12.2023 14:49

Hey sir your tutorials is too good... But i have some problem why we can't go to sproduct page directly from home page

Ответить
@yungg5482
@yungg5482 - 27.11.2023 02:20

Saved my Day.

Ответить
@allybobsaith
@allybobsaith - 24.11.2023 00:28

Hi how do you add cart page on other product in shop page

Ответить
@aanchalarora1780
@aanchalarora1780 - 04.11.2023 20:04

sir i have one question how to add to cart button will be active if we want to put products in cart then how to do please show us

Ответить
@bakhietmohamed5482
@bakhietmohamed5482 - 22.10.2023 16:49

imgs.forEach(function(e){
e.addEventListener('click' , function(){
img.setAttribute('src' , e.src)
})
})

Ответить
@mahmoudahmed8231
@mahmoudahmed8231 - 10.10.2023 22:55

(slider code with a dynamic way)
let mainImg = document.getElementById("MainImg");
let smallImg = document.querySelectorAll(".small-img");

for (i = 0; i < smallImg.length; i++) {
smallImg[i].onclick = function () {
mainImg.src = this.src;
console.log(this.src);
};
}

Ответить
@Ngida2002
@Ngida2002 - 09.10.2023 13:49

Hello, I have noticed you don't create a media query for screen (max-width: 1366px) , laptops, but it does not affect anything when it comes to making the screen responsive in different devices at the end of the video, for me I had to create the max-width 1366px media query for it to work for all the devices.

Ответить
@puneetsharma4458
@puneetsharma4458 - 01.10.2023 17:47

pleae priovide a source code i can not pay this project. i m very low family .. i love your tutorials..

Ответить
@JD-eb5qu
@JD-eb5qu - 30.09.2023 10:44

Ответить
@mdmoniritworld4072
@mdmoniritworld4072 - 25.09.2023 16:56

It would be helpful if you could practice the codes

Ответить
@anishtanvar2302
@anishtanvar2302 - 16.09.2023 13:32

sir 1 product ke liye to product page bna diya, same product page ko baki ke products ke liye bhi chlana ho to vo kese krte h ye bhi bta dete?
ye to bilkul static h eska kya fayeda jab ye sirf ek hi product page ke liye kaam krega to , hame to sabhi products ke liye same hi product page ki working bnani h

Ответить
@michaelweber2702
@michaelweber2702 - 06.08.2023 18:14

This tutorial is so premium, thank you very much :)!

Ответить
@top7pp
@top7pp - 04.08.2023 18:03

Please add backend program sir ❤🙏

Ответить
@princezishu1859
@princezishu1859 - 27.07.2023 12:45

javascript is not working sir what can I do

Ответить
@wadiajaafar3907
@wadiajaafar3907 - 25.07.2023 15:13

Thank you soo much for making a tutorial video.
Amazing teacher.

Ответить
@sayeramusawer4859
@sayeramusawer4859 - 19.07.2023 14:40

Can you make add to cart clickable and when i click there so someone can buy a product form there, kindly make a video on it
Thanks for such amazing videos

Ответить
@afaqnoor2467
@afaqnoor2467 - 17.07.2023 18:18

Thank You so much SIR

Ответить
@lcab5205
@lcab5205 - 07.07.2023 11:36

you can public link demo web

Ответить
@namratadesai774
@namratadesai774 - 05.07.2023 13:12

You showed us how to redirect from first product in shop.html to sproduct(by using onclick="window.location.href='sproduct.html';) how to do same thing for other images?

Ответить
@husseinokasha130
@husseinokasha130 - 01.07.2023 22:17

excellent work, I need the image or the box that I clicked to view in product page not just one product

Ответить
@OPTIMUSprime34
@OPTIMUSprime34 - 26.06.2023 13:47

GOD BLESS YOU😇😇😇

Ответить
@AnkitKumar-ol7vc
@AnkitKumar-ol7vc - 24.06.2023 12:15

Images kaise download kre?

Ответить
@nonaaaa373
@nonaaaa373 - 22.06.2023 16:38

how many more parts of this video are we gonna be seeing?

Ответить
@pojuagbomeji1115
@pojuagbomeji1115 - 10.06.2023 19:12

source code ?

Ответить
@eseoru6528
@eseoru6528 - 07.06.2023 01:22

bro you are GOD SENT!

Ответить
@someone2939
@someone2939 - 02.06.2023 13:50

the best

Ответить
@user-qt8jk7ej7r
@user-qt8jk7ej7r - 26.05.2023 21:52

<script>
const MainImg = document.getElementById('MainImg')
let small = document.querySelectorAll('.small-img')
small.forEach((item) => {
item.addEventListener('click', () => {
MainImg.setAttribute('src', item.getAttribute('src'))
})
})
</script>

Ответить
@Mind--Blow
@Mind--Blow - 21.05.2023 12:37

hey thanks for the work very nice i made it

Ответить
@KidsPalthink
@KidsPalthink - 18.05.2023 20:15

Nice🎉

Ответить
@viniciusklein1738
@viniciusklein1738 - 05.05.2023 04:45

where are the JS part

Ответить
@AlexIlyaGuennad
@AlexIlyaGuennad - 23.04.2023 11:28

Just amazing quality videos!! You're fantastic !

Ответить
@ebrahemshoieb
@ebrahemshoieb - 16.04.2023 15:33

you can to change the function that do change img to {
function imgs(img) {
MainImg.src = img
}
and html element change to {
<img onclick="imgs(this.src)" src="img/products/f4.jpg" width="100%" class="small-img" alt="">
}

Ответить
@Developer_knowledge
@Developer_knowledge - 15.04.2023 13:00

hello sir please help me
when i click on small image then i got an error of - TypeError: Cannot set properties of null (setting 'src')
at smallimg.<computed>.onclick please help me and my code is same as your code

Ответить
@kumarsharad2027
@kumarsharad2027 - 15.04.2023 12:13

Where is javascript🙄??? Only html css there😒

Ответить
@ndesimoniche7125
@ndesimoniche7125 - 13.04.2023 16:04

Hello please I need help getting the source code how can I go about it

Ответить
@arya7881
@arya7881 - 11.04.2023 21:05

Sir plz reply the new shirt is not open on clicking plz help

Ответить
@roshantshrestha2188
@roshantshrestha2188 - 10.04.2023 12:44

bro i tryed to as your but o can’t switch image as a main image it show an error that the valu 0 is undefined

Ответить
@hmoodzaiman8768
@hmoodzaiman8768 - 05.04.2023 19:03

keep on it bro

Ответить
@kingpython8876
@kingpython8876 - 26.03.2023 06:15

thanks for the video . pls can you put all the images in one file or zip file so it can be easy to download

Ответить
@kmane8593
@kmane8593 - 22.03.2023 14:03

superb sir

Ответить