Wanna meet a web designer !

siddhant2611

Newbie
Joined
Jul 1, 2017
Messages
19
Reaction score
13
Hello is there any one here who is a proffessionsl web desginer and can help me in learning web designing?
 
There are literally thousands of resources on the Internet for learning web design.

Nobody here is going to take you through it step by step and teach you everything. You have to do the work yourself first, then when you get stuck come back and ask specific questions.
 
i m not asking for step by step tutorials I wanna just know some peoples who are in this field..
 
i can help, but as others said most of the work should come from your side :)

You can ask me anything :)
 
yuvalg 2 ! can u tell me how to make a slider with java script ? I can do it with bootstrap but I want real code ... can u write for me with lil bit of explanation?
 
yuvalg 2 ! can u tell me how to make a slider with java script ? I can do it with bootstrap but I want real code ... can u write for me with lil bit of explanation?

Do you mean a image slider ? if so its really simple
All you need is a container (DIV) and inside all your imgs

HTML:
<div id="slider">
   <img src="#"/>
   <img src="#"/>
   <img src="#"/>
</div>

<script>
window.onload = function(){
   setInterval(slide,2000);
}
function slide(){
   //Appending the first img to the end of the list
   var container = document.getElementById('slider');
   var firstIMG = container.querySelector('img') //The first img child
   container.appendChild(firstIMG);
}


</script>
 
Back
Top