Core JavaScript Multi Column Layout Grid Programming Tutorial

  Рет қаралды 45,926

Adam Khoury

Adam Khoury

Күн бұрын

Пікірлер: 50
@slidewineder3953
@slidewineder3953 8 жыл бұрын
Just starting out with Javascript and I find these videos incredibly helpful even though I don't fully grasp everything going on in them.
@ttime9723
@ttime9723 7 жыл бұрын
Adam, you are easily one of the best tutors out there! Video's are always to the point and very clear. Thank you so much!
@MpeteloVemba
@MpeteloVemba 10 жыл бұрын
Great tutorial as usual. I am learning allot since I started watching your videos. Thank you Adam.
@peterm.souzajr.2112
@peterm.souzajr.2112 10 жыл бұрын
super helpful for my multi column and multi row social network ! so easy to follow
@Ladynatalie33
@Ladynatalie33 7 жыл бұрын
Thank you for this great tutorial. Best explanation, best pronounciation (as I am German) and very helpful to me.
@crestinglight
@crestinglight 7 жыл бұрын
Thank you for this. I was really struggling with getting a masonry layout that renders horizontally.
@myvarsity
@myvarsity 10 жыл бұрын
Brilliant as usual
@sunmustbedestroyed
@sunmustbedestroyed 10 жыл бұрын
Thanks! Great vid as always.
@AdamKhoury
@AdamKhoury 10 жыл бұрын
@Chandrapratap000
@Chandrapratap000 10 жыл бұрын
very nice :)
@alfa3410
@alfa3410 10 жыл бұрын
Mel Dedara I have the same problem!
@Jake-gh4vg
@Jake-gh4vg 10 жыл бұрын
Can you plese make a tutorial on how to make the js grid responsive PLEASE!!!!!
@monkeysarecool1877
@monkeysarecool1877 10 жыл бұрын
Yeah! that would be very cool :P
@dripcode8344
@dripcode8344 10 жыл бұрын
I'm having a problem too on that Arqetech Main Mel Dedara Adam Khoury Please HELP
@AlfonsoM422
@AlfonsoM422 10 жыл бұрын
awesome tutorial!
@JC-sq9ek
@JC-sq9ek 9 жыл бұрын
Is it hard to make this responsive?
@josher3436
@josher3436 9 жыл бұрын
Excellent video thanks....
@mamdouhzaq
@mamdouhzaq 10 жыл бұрын
Great Tut, Thank you :)
@RmonikMusic
@RmonikMusic 7 жыл бұрын
The problem with this method is you're always using the same colums. What i mean is that if you were to have every third element to be much larger than the others, the third column would be much longer rather than having the new elements fit in wherever they find a spot.
@gravics
@gravics 10 жыл бұрын
Very smart! Thanks.
@decojoe5660
@decojoe5660 10 жыл бұрын
Adam your videos are Super practical; awesome good stuff. by any chance do you have a video that shows how to build a grid similar to turbo tax or quicken loans ? I'm looking to do just 2 vertical columns on an app with the ability chance the colors. thanks
@fahim52510
@fahim52510 8 жыл бұрын
Hi, Adam thanx a lot for this magical tutorial. I just finding it. is it supported mixItUp or Isotope like Jquery plugin ? Otherwise what solution to create this type of effective portfolio?? reply hurry up please ...........
@sdhpCH
@sdhpCH 10 жыл бұрын
Adam, is THAT all the magic behind masonry?
@danysinchro
@danysinchro 10 жыл бұрын
Awesome.
@atypical_blk_guy
@atypical_blk_guy 9 жыл бұрын
Is there a way to make a grid that has just three boxes? The first box would have a width of 700px and I want the other 2 boxes to be to the right of the large one but stacked on top of each other. Can that be rendered as well?
@GeofreyBanzi
@GeofreyBanzi 6 жыл бұрын
Is there a way for me to make these boxes show their contents?
@islammurat8853
@islammurat8853 6 жыл бұрын
to make them work on tab or mob should i reload the page ???
@rogernkosi8420
@rogernkosi8420 9 жыл бұрын
nice one
@Natasha-mj4uz
@Natasha-mj4uz 8 жыл бұрын
hey can you guys help in small problem, it is about how to make columns display like Grid and List like that in KZbin
@malakali-kx3uy
@malakali-kx3uy 7 жыл бұрын
I used your code in cordova app that support html , js and css to run on mobile screen ,but the code doesn't work on mobile screen until l resized and rotated from vertical mode to horizontal mode . can you help me, How can I solve this problem ?
@SimonArturius
@SimonArturius 10 жыл бұрын
thanks man...:-)
@황창하-e2r
@황창하-e2r 6 жыл бұрын
perfect
@eliasabraham8164
@eliasabraham8164 7 жыл бұрын
i really don't understand this part if(i % cols == 0) well since the columns are 14 then that's not true because he has set i to 1 please can someone tell me whats going on
@AhmedAnmar300
@AhmedAnmar300 7 жыл бұрын
I don't understand it too plz any clarification
@kalamashaka8280
@kalamashaka8280 7 жыл бұрын
when i stands for number divided by number of columns or cols we want is equals to 0
@itsme-gp3ce
@itsme-gp3ce 7 жыл бұрын
'%' is an arithmetic operator called "modulus" or modular operator..it returns the division remainder ...for example we have var x = 9 and y = 2 ..z = x % 2.. the z value will be 1....
@ashe4158
@ashe4158 6 жыл бұрын
The statement " if(i % cols == 0) " , which includes the modulus, returns true in instances where the number of columns divided into the number of cards has no remainder. For example, if you have any multiple of 3, then the statement would return true because an even division occurs (3 cards / 3 columns, 6 cards/3 columns, 9 cards/3 columns) and there are no remaining cards that need to be pushed to a new row, and thus re-styled for proper positioning. In cases where you don't have a multiple of 3 a remainder occurs and the statement returns false (i.e. 4 cards/ 3 columns --> 1 card remaining ; 8 cards/ 3 columns --> 2 cards remaining). In the latter case, you have to restyle the cards in order to properly position cards that don't have a full row.
@NelsonBiglar
@NelsonBiglar 10 жыл бұрын
can this work with wordpress where if a post is created it will add it to a specific block?
@General_Aladeen
@General_Aladeen 10 жыл бұрын
of course it is.
@name.victor
@name.victor 7 жыл бұрын
How do I do this responsive?
@gravityarm9240
@gravityarm9240 7 жыл бұрын
It's script equal masonary plugin ?
@sirsaikoplays
@sirsaikoplays 7 жыл бұрын
no
@codalite
@codalite 10 жыл бұрын
Who is that gay that made a dislike???
@rahulvanave
@rahulvanave 6 жыл бұрын
it's not responsive, though
@Fullrusher
@Fullrusher 6 жыл бұрын
I find this stuff impossible to learn , I’m on the verge of giving in
@jdbalboa
@jdbalboa 10 жыл бұрын
Adam your videos are Super practical; awesome good stuff. by any chance do you have a video that shows how to build a grid similar to turbo tax or quicken loans ? I'm looking to do just 2 vertical columns on an app with the ability chance the colors. thanks
JavaScript Tutorial - Trigger CSS3 Transitions Control Animations
20:01
File Upload Progress Bar Meter Tutorial HTML5 Ajax PHP
24:39
Adam Khoury
Рет қаралды 199 М.
I thought one thing and the truth is something else 😂
00:34
عائلة ابو رعد Abo Raad family
Рет қаралды 5 МЛН
СКОЛЬКО ПАЛЬЦЕВ ТУТ?
00:16
Masomka
Рет қаралды 3,3 МЛН
Flexbox or grid - How to decide?
18:51
Kevin Powell
Рет қаралды 742 М.
Exam Application Programming Tutorial JavaScript Quiz Online Test
26:40
Vim Tips I Wish I Knew Earlier
23:00
Sebastian Daschner
Рет қаралды 78 М.
Why Signals Are Better Than React Hooks
16:30
Web Dev Simplified
Рет қаралды 488 М.
It’s time to move on from Agile Software Development (It's not working)
11:07
#37 CSS Grid Tutorial [Complete Guide] - CSS Full Tutorial
43:12
Dev Dreamer
Рет қаралды 108 М.
How To Handle Permissions Like A Senior Dev
36:39
Web Dev Simplified
Рет қаралды 157 М.
JavaScript Class OOP Tutorial Intro to Object Oriented Programming
21:04
I thought one thing and the truth is something else 😂
00:34
عائلة ابو رعد Abo Raad family
Рет қаралды 5 МЛН