Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. $(initImages);
  2.  
  3. function initImages(){
  4. $(".img-wrapper").click(function(){
  5. $(this).find("img").remove();
  6. var id = $(this).attr("data-id");
  7. var framename = $(this).attr("data-name");
  8. $(this).append(generateIFrame(id, framename));
  9. });
  10. }
  11.  
  12. function generateIFrame(id, framename) {
  13. return "<iframe src='' frameborder='1' style='margin-left: 2%; margin-top: 4%; width: 250px; height: 417px; position: absolute; z-index: 0' id='" + framename + "' allowfullscreen mozallowfullscreen='true' webkitallowfullscreen='true'></iframe><img src='../products/empty/empty.png' style='z-index: 0;'/><script type='text/javascript'>var iframe=document.getElementById( '"+framename+"' ); var version = '1.0.0';var sword = '" + id +"';var client=new Sketchfab( version, iframe );client.init(sword,{success:function onSuccess(api){api.start();api.addEventListener( 'viewerready',function(){console.log( 'Viewer is ready' );});},error: function onError(){console.log('Viewer error');}});<\/script>";
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement