Skip to content

Instantly share code, notes, and snippets.

@alt-karate
Created October 20, 2020 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alt-karate/c868fb0d0d2ddba167803f84975efb55 to your computer and use it in GitHub Desktop.
Save alt-karate/c868fb0d0d2ddba167803f84975efb55 to your computer and use it in GitHub Desktop.
//画像をテキストに置き換え
$(function(){
$(".sp_text").each(function(i){
var txt = $("img",this).attr("alt");
$(this).attr("data-label", txt);
});
})
<p class="sp_text"><img src="images/txt.png" alt="WebDesign Dackel" /></p>
/* スマホ時画像のalt属性をテキスト化 */
.sp_text:after {
content: attr(data-label);
}
.sp_text img {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment