How to convert a PowerPoint slide to HTML?

I am trying to insert PowerPoint slides in HTML, preserving links in a PowerPoint slide. I'm just wondering if any of you knew a good way to export a PowerPoint slide to HTML and then display it on a div on your page, with a link to a JavaScript function on the same page.

+4
source share
5 answers

Although not quite what you requested, Google Docs or Slideshare allow you to insert Powerpoint as a flash - perhaps this would be a more elegant way to do this. That is, if the goal is an investment!

+2
source

I have never used it, but PPT2HTML can help. In addition, this blog describes how to save a presentation for the Internet and then modify it.

This is not exactly what you need, but there are some html-based presentation tools, such as S5 , DOMSlides , which you might want to consider as they would not be affected by the translation.

+3
source

1) u can convert it to flash swf 2) convert all slides to an image file, and then add 2 buttons (Back, Next) to call the next and previous images based on an integer variable, and these buttons will show the previous and next slides :)

sorry but don’t include it without copying all the HTML code exported by Powerpoint to your div tag

+2
source

I remember that a function for exporting to HTML appeared in PowerPoint, I would do it and then put it on the page using <iframe> and then placed inside the <div>

+1
source

You can use the jQuery plugin called PPTXjs.

This plugin converts pptx to html using javascript only (no server-side code required).

It is based on PPTX2HTML , but supports much more forms, media (audio, video), etc.

Using:

  $("#result").pptxToHtml({ pptxFileUrl: "path/to/slide.pptx" }); 

More details: https://github.com/meshesha/PPTXjs .

+1
source

All Articles