I basically made a quiz where you guess cartoon characters off of their silhouette and I thought it would be fun if the image changed form the silhouette image I made to the original image thus revealing the character after the quiz taker types the correct answer. I've done tons of quizzes where the images change as you take the quiz but I don't see any way to do this, so if anyone knows it would be much appreciated!
Thanks!
display: none;
}
.svg-holder #layer1 {
display: inline;
}
.pre-quiz svg #layer4 {
display: none;
}
.svg-holder #layer4 {
display: inline;
}
.svg-holder .FrontBack {
fill: #e1e1e1 !important;
}
.dark-mode .FrontBack {
fill: #1c1e20 !important;
}
.svg-holder .Back {
fill: #ffffff !important;
stroke: #ffffff !important;
}
.dark-mode .Back {
fill: #24282b !important;
stroke: #24282b !important;
}
.svg-holder .svg-correct {
opacity: 0;
visibility: hidden;
transition: all 0.5s;
}
.post-quiz svg .svg-correct {
display: none;
}
.post-quiz svg #rect173996 {
display: none;
}
This was in the code for one of the Country Shapes Revealing Country Shapes. Perhaps you can use this.