How does HTML5 play .swf files?

the old version of the website 10 years ago needs to be renovated. There is an animation of an old file SWF. I want to put it on HTML5. How to achieve it?

Mar.09,2021

The

implementation has been found-- but you still need to change the format. Otherwise, the mobile will not be able to load

    <object width="400" height="40" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab-sharpversion=8,0,0,0">
        <param name="SRC" value="bookmark.swf">
        <embed src="index.swf" width="400" height="320">
    </object>

you can take a look at the video playing on the official website I wrote. Mobile users need to click to play
http://www.mytian.com.cn/abou.

.
Menu