+ 1
How do i create a curved picture gallery that users can add in there pictures or videos
picture galleries
3 Antworten
+ 3
use CSS to curve, document.createElement("img"); to create new image tags, img = document.getElementsByTagName("img") to get all images and: for (var i = 0; i < img.length; i++){img[i].src = "http://..."} to change resources...
0
thankyou
0
i must be using the wrong editors