WordPressブログのレスポンシブ画像にforesight.jsを使用しようとしています。そのためには、<img>
タグのsrcの代わりにdata-src属性を追加する必要があります。
または、投稿の画像からURLを取得し、新しいタグを古いタグの近くにバインドして、その古いタグを<img>
タグでラップする必要があります。どうしたらいいのかわからない。<img>
<noscript>
基本的には次のようになります。
<img data-src="http://foresightjs.appspot.com/dynamic-images/px-wright-flyer.jpg" data-aspect-ratio="auto" class="fs-img">
<noscript>
<img src="http://foresightjs.appspot.com/dynamic-images/1024px-wright-flyer.jpg">
</noscript>`