Last active
November 8, 2016 03:10
-
-
Save butchi/8475bbdd3a1a0c2e6c9f923392d028ff to your computer and use it in GitHub Desktop.
JSだけでソーシャルボタン設置 ref: http://qiita.com/butchi_y/items/f2253ddd504d30686f62
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS share button</title> | |
| <meta property="og:title" content="XHTML like"> | |
| <meta property="og:type" content="website"> | |
| <meta property="og:url" content="http://example.com/"> | |
| <meta property="og:image" content="http://example.com/ogp.png"> | |
| <link rel="stylesheet" href="css/style.css"> | |
| </head> | |
| <body> | |
| <div class="wrapper"> | |
| <ul class="list-share"> | |
| <li class="item facebook"></li> | |
| <li class="item twitter"></li> | |
| <li class="item line"></li> | |
| <li class="item gplus"></li> | |
| </ul> | |
| </div> | |
| <script type="text/javascript" src="js/script.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment