How add clip art at run time on button click
Hello I am working on project where I need开发者_如何学编程 to customize our card at run time. Mean when user click on a button then it will show a horizontal slider(that contain images ) user click one of the image and images comes over the screen.
Set the element that you want to display to display:none
and then add an onClick
event to the button that sets the same display property to display:inline
<div style="display:none;"></div>
<div style="display:inline;"></div>
精彩评论