Advertisement
basictomonokai

感情判定結果画面表示用雛形(HTMLファイル)

Jan 18th, 2016
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5.     <title>JSSample</title>
  6.  
  7. <style type="text/css">
  8. <!--
  9. input,textarea,select {
  10.  font-size: 1.4em;
  11.  width:90%;
  12.  height:55%;
  13. }
  14. body {
  15.  font-size: 1em;
  16.  background:azure;
  17. }
  18. -->
  19. </style>
  20.  
  21. <style type="text/css">
  22. <!--
  23.  
  24. .buttonx {
  25.  width:160px;
  26.  color:#ffffff;
  27.  background:#337fcc;
  28.  font-family: fantasy,sans-serif;
  29.  font-size:24px;
  30.  font-weight:bold;
  31.  text-shadow:0 1px 0px #143352,0 2px 0px #143352;
  32.  text-align:center;
  33.  display:inline-block;
  34.  text-decoration:none;
  35.  border:1px solid #225588;
  36.  padding:15px 0 12px 0;
  37.  border-radius:5px;
  38.  margin-bottom:20px;
  39.  margin-left: 10px;
  40. }
  41.  
  42. -->
  43.  
  44. </style>
  45.  
  46. <style>
  47.  
  48. #tmpa{float: left; width: 40%; height 80%;margin-right: 10px;  padding:20px;border: 3px solid #666;}
  49. #info{float: left; width: 40%; height 80%; padding:20px ;border: 3px solid #666;}button{float:right;padding: 10px 30px;}
  50. hr{border: 2px solid #888;}
  51.  
  52.  
  53. @media only screen and (max-width: 900px) {
  54.  
  55. #tmpa{float: left; width: 80%; margin-right: 10px;  padding:20px;border: 3px solid #666;}
  56. #info{width: 80%; height: 470px;padding:20px ;border: 3px solid #666;}button{float:right;padding: 10px 30px;}
  57. hr{border: 2px solid #888;}
  58.  
  59. }
  60.  
  61. </style>
  62.  
  63. <script type="text/javascript">
  64.     function doDataLink(data) {
  65.         //  alert('dodatalink=>'+data);
  66.         Android.dataLink(data);
  67.     }
  68. </script>
  69.  
  70. </head>
  71. <body>
  72.  
  73.  
  74.  
  75. <div id="tmpa"><img id="tmp" src="https://i.embed.ly/1/display/resize?key=5230dd43a2a24dbfa00e59ddfab27c63&width=400&height=400&url=@@@1@@@"></div>
  76. <div id="info">
  77. この写真の感情判定結果<br><br>@@@2@@@<br>
  78. <button class="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('//x//')">終了</button>
  79. <button class="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('//y//')">次の検索</button>
  80.  
  81. <div>
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement