:cookie: 40 | @collinbird |http://www.freecodecamp.com/collinbird
:star2: 1267 | @coymeetsworld |http://www.freecodecamp.com/coymeetsworld
:warning: dueldrawer8 already gave coymeetsworld points
.hr.star-bright {
}
margin: 0 auto;
but that did not work
const setShowcaseImg = function() {
const thisProject = project[$(this).data("project")];
//gets the name of the project to later use it to fetch properties from that project
$showcaseImg.find("img").attr("src", thisProject.img);
//gets the url of the imagen and set it
$showcaseImg.find("p").text(thisProject.description);
//gets the description
$showcaseImg.find("a").attr("href", thisProject.url);
//gets the url
$showcaseImg.addClass("showcase-open");
// then it opens a div containing this info
}
I have something like this to showcase some images with text and a link but when i close the showcase div and activates it again with a different images it just takes like 30ms to actually change the image it work, but i can still see the previous image for like 20ms and that's not good :worried: