Advertisement
basictomonokai

HTML変更テストプログラム用HTML

Oct 18th, 2016
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6.  
  7. <title>MetrooUI HTML Sample Page</title>
  8.  
  9. <style>
  10. textarea {
  11. font-size: 1.5em;
  12. width: 80%;
  13. height: 9em;
  14. margin: 10px;
  15. }
  16. </style>
  17.  
  18. <style type="text/css">
  19. <!--
  20.  
  21. #buttonx {
  22. width:20%;
  23. color:#ffffff;
  24. background:#337fcc;
  25. font-family: fantasy,sans-serif;
  26. font-size:24px;
  27. font-weight:bold;
  28. text-shadow:0 1px 0px #143352,0 2px 0px #143352;
  29. text-align:center;
  30. display:inline-block;
  31. text-decoration:none;
  32. border:1px solid #225588;
  33. padding:15px 0 12px 0;
  34. border-radius:5px;
  35. margin-bottom:20px;
  36. margin-left:10px;
  37. }
  38.  
  39. -->
  40.  
  41.  
  42. </style>
  43.  
  44. <script type="text/javascript">
  45. function doDataLink(data) {
  46. // alert(data);
  47. Android.dataLink(data);
  48. }
  49. </script>
  50.  
  51. </head>
  52. <body>
  53. <div>
  54. <textarea id="aaa" name="aaaa">テスト</textarea>
  55. </div>
  56. <div>
  57. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('//a//')">テスト</a>
  58. </div>
  59.  
  60.  
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement