前言
x-gif可以使用<x-gif>
的標籤來顯示gif檔,透過這個標籤可以動態的調整gif。
Usage
|
|
github上有了就不贅述,記得import必須透過網路。
Reverse
x-gif沒有reverse
選項,因此對程式做一點修改,直接附上修改後的檔案。
x-gif.html
Bug
Safari
Safari並不能顯示x-gif,研究了兩三天也找不到替代套件後終於找到解決辦法了。
首先先到webcomponentsjs,下載後再將這段1document.write('<script src="https:\/\/cdnjs.cloudflare.com/ajax/libs/polymer/0.3.4/platform.js"><\/script>)
替換成下載的檔案1document.write('<script src="js\/webcomponents.js"><\/script>');
jQuery Mobile
webcomponents
和jQuery Mobile
會有衝突,將jquery.mobile-1.4.5.js
中的1this.window = $( this.document[0].defaultView || this.document[0].parentWindow );
替換成1this.window = $(window);