Advertisement
basictomonokai

◆RSS表示用のHTML

Jun 3rd, 2015
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.65 KB | None | 0 0
  1. <html>
  2.  
  3. <head >
  4.  
  5. <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
  6.  
  7. <link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
  8.  
  9. <style type="text/css">
  10. <!--
  11. div#floating-menu {
  12. position: fixed;
  13. text-align: right;
  14. top: 0px;
  15. left: 70%;
  16. right: 0px;
  17. background-color: #FFFFFF;
  18. border: 1px solid #000000;
  19. z-index: 9999;
  20. opacity: 0.5;
  21. }
  22. -->
  23. </style>
  24.  
  25. <style type="text/css">
  26. <!--
  27. input,textarea {font-size: 36;}
  28. -->
  29. </style>
  30.  
  31. <style type="text/css">
  32. <!--
  33.  
  34. #buttonx {
  35. width:80%;
  36. color:#ffffff;
  37. background:#337fcc;
  38. font-family: fantasy,sans-serif;
  39. font-size:24px;
  40. font-weight:bold;
  41. text-shadow:0 1px 0px #143352,0 2px 0px #143352;
  42. text-align:left;
  43. display:block;
  44. text-decoration:none;
  45. border:1px solid #225588;
  46. padding:5px 0 4px 0;
  47. border-radius:5px;
  48. margin-bottom:15px;
  49. }
  50.  
  51. #buttony {
  52. width:30%;
  53. color:#ffffff;
  54. background:#337fcc;
  55. font-family: fantasy,sans-serif;
  56. font-size:24px;
  57. font-weight:bold;
  58. text-shadow:0 1px 0px #143352,0 2px 0px #143352;
  59. text-align:center;
  60. display:inline-block;
  61. text-decoration:none;
  62. border:1px solid #225588;
  63. padding:10px 0 8px 0;
  64. border-radius:5px;
  65. margin-bottom:20px;
  66. }
  67.  
  68. -->
  69.  
  70.  
  71.  
  72.  
  73. </style>
  74.  
  75.  
  76. <title>RSSフィードリーダ</title>
  77.  
  78.  
  79. <script type="text/javascript">
  80. var timerID;
  81. function ScrollStart(){
  82. timerID=setInterval("scroll()",50);
  83. }
  84. function scroll(){
  85. window.scrollBy(0,2);
  86. }
  87. function ScrollStop(){
  88. clearInterval(timerID);
  89. }
  90. </script>
  91.  
  92.  
  93. </head>
  94.  
  95. <!--
  96. This simple Javascript Function sends
  97. the string "data" to the the excuting BASIC!
  98. program.
  99.  
  100. The BASIC command, "html.getdatalink data$", is
  101. used to read linked data. If data$ is empty ("") then
  102. not data has been sent. The BASIC! programmer
  103. can loop on this value until a non-empty string is
  104. returned.
  105.  
  106. This function is the heart the HTML/BASIC! interactive
  107. interface.
  108. -->
  109.  
  110. <script type="text/javascript">
  111. function doDataLink(data) {
  112. Android.dataLink(data);
  113. }
  114. </script>
  115.  
  116. <body bgcolor="azure">
  117.  
  118. <div id="floating-menu">
  119. <p id="RealtimeClockArea">時計表示エリア</p>
  120. </div>
  121. <script type="text/javascript">
  122. function set2fig(num) {
  123. // 桁数が1桁だったら先頭に0を加えて2桁に調整する
  124. var ret;
  125. if( num < 10 ) { ret = "0" + num; }
  126. else { ret = num; }
  127. return ret;
  128. }
  129.  
  130. function showClock1() {
  131. var nowTime = new Date();
  132. var nowHour = set2fig( nowTime.getHours() );
  133. var nowMin = set2fig( nowTime.getMinutes() );
  134. var nowSec = set2fig( nowTime.getSeconds() );
  135. var nowYear = nowTime.getFullYear();
  136. var nowMonth = nowTime.getMonth() + 1;
  137. var nowDate = nowTime.getDate();
  138. var yobi = ["日","月","火","水","木","金","土"];
  139. var nowYobi = yobi[nowTime.getDay()];
  140. var msg = nowYear + "/" + nowMonth + "/" + nowDate
  141. var msg = msg + "(" + nowYobi + ") [" + nowHour + ":" + nowMin + ":" + nowSec + "]";
  142. document.getElementById("RealtimeClockArea").innerHTML = msg;
  143. }
  144. setInterval('showClock1()',1000);
  145. </script>
  146.  
  147. <div align="center">
  148. <!--
  149. Display an image located on the internet
  150. -->
  151. <h1><b>RSSフィードリーダ</b></h1>
  152.  
  153. <br>
  154.  
  155. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('///y///')" >キーワード登録</a>
  156. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('///x///')" >処理終了</a>
  157. <br>
  158. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStart()">ロール開始</a>
  159. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStop()">ロール停止</a>
  160. <br>
  161. <a name="b1">
  162. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b1@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/8e8de8695e1b012e01ce4deb272178b5?ul=25a9JLchQOajC8N0my29vmh7jYyc5maBAQPtcwrm9rxwP.bRWmdZ3dMsT6ZWqlMtgVqESpVUZm89MGb3NW2zXYyIW.sky2joxE..m9iCh_Adxqdmy')" >スタバの無料Wi-Fi、利用者が大幅増、SNS認証対応で訪日客が注目? </a>
  163. <a name="a1">
  164. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a1@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/8e8de8695e1b012e01ce4deb272178b5?ul=25a9JLchQOajC8N0my29vmh7jYyc5maBAQPtcwrm9rxwP.bRWmdZ3dMsT6ZWqlMtgVqESpVUZm89MGb3NW2zXYyIW.sky2joxE..m9iCh_Adxqdmy')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  165. <div align=left>
  166. 【■INTERNET Watch】(Mon, 25 May 2015 01:30:19 -0700)
  167. </div>
  168. <br>
  169. <br>
  170. <a name="b2">
  171. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b2@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/e3711a77e9e664afbb442b64c8172839?ul=thUZ4DukEEea2EqIJlnZyJhUZf4IvYTerNL9swJ62pp6LHvFNuNDkSkjoWSnhNcnTHhcgewe4Y.aA6caA_2YX3X_knMg5w5ac7W7zgnb4YAZgXsu3')" >自宅でオフロードしているユーザーが7割、モバイル機器利用の大半が自宅 </a>
  172. <a name="a2">
  173. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a2@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/e3711a77e9e664afbb442b64c8172839?ul=thUZ4DukEEea2EqIJlnZyJhUZf4IvYTerNL9swJ62pp6LHvFNuNDkSkjoWSnhNcnTHhcgewe4Y.aA6caA_2YX3X_knMg5w5ac7W7zgnb4YAZgXsu3')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  174. <div align=left>
  175. 【■INTERNET Watch】(Mon, 25 May 2015 01:10:57 -0700)
  176. </div>
  177. <br>
  178. <br>
  179. <a name="b3">
  180. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b3@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/1cbcaa40a98823c17d365476ed8713ee?ul=e56ilnhHzXVyDlFd2J3iTdKmJJ0I5LtvCNaEb0c9.NjPe9pEbo29BgQqGUH4S4HSFQEIpP.7L.T2eMJ0zD.xpJ494DrxJPbjxdTywVj5geO7lZRYG')" >「Google I/O 2015」が28日開幕、深夜の中継イベントも国内各地で開催 </a>
  181. <a name="a3">
  182. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a3@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/1cbcaa40a98823c17d365476ed8713ee?ul=e56ilnhHzXVyDlFd2J3iTdKmJJ0I5LtvCNaEb0c9.NjPe9pEbo29BgQqGUH4S4HSFQEIpP.7L.T2eMJ0zD.xpJ494DrxJPbjxdTywVj5geO7lZRYG')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  183. <div align=left>
  184. 【■INTERNET Watch】(Sun, 24 May 2015 22:35:43 -0700)
  185. </div>
  186. <br>
  187. <br>
  188. <a name="b4">
  189. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b4@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/d3871ae95c9f6f31f37ec0f8881f13fd?ul=MYDRpsNm3x48BrSgvvVR78AJoEn.mnMliGuUSQ0kpFPIM7lBWpsWBKQbaVgYgVZb2o1rfk3.vwKarmsM9KxbYGrHZczTDqb45swYLpLfyRszO3IRp')" >キヤノン、カラーで1分間に60ページスキャンできるドキュメントスキャナー、IC付きパスポートも読み取り可能 </a>
  190. <a name="a4">
  191. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a4@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/d3871ae95c9f6f31f37ec0f8881f13fd?ul=MYDRpsNm3x48BrSgvvVR78AJoEn.mnMliGuUSQ0kpFPIM7lBWpsWBKQbaVgYgVZb2o1rfk3.vwKarmsM9KxbYGrHZczTDqb45swYLpLfyRszO3IRp')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  192. <div align=left>
  193. 【■INTERNET Watch】(Sun, 24 May 2015 22:35:00 -0700)
  194. </div>
  195. <br>
  196. <br>
  197. <a name="b5">
  198. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b5@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/94465ba996edcaab9602d4e0478e5ff9?ul=GDOosZADISaNa5Gl_TVokaDPpMpY.04TYxavHOJK1XiAGfgPhAc.hwCNMhCIQRFDdeww6IaxRKiyUDKTJECYMdIQjA_u2p7fVNYIpTp07ok9XDA.1')" >コクヨ、文具や雑貨などにフォーカスしたニュースサイト「inspi」開設 </a>
  199. <a name="a5">
  200. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a5@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/94465ba996edcaab9602d4e0478e5ff9?ul=GDOosZADISaNa5Gl_TVokaDPpMpY.04TYxavHOJK1XiAGfgPhAc.hwCNMhCIQRFDdeww6IaxRKiyUDKTJECYMdIQjA_u2p7fVNYIpTp07ok9XDA.1')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  201. <div align=left>
  202. 【■INTERNET Watch】(Sun, 24 May 2015 21:30:40 -0700)
  203. </div>
  204. <br>
  205. <br>
  206. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('///x///')" >処理終了</a>
  207. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStart()">ロール開始</a>
  208. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStop()">ロール停止</a>
  209. <br>
  210. <a name="b6">
  211. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b6@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/b9b660fedaeff78196e041135df29afc?ul=4ELLweSiWyMyuTlEHnyLnF_VXaGsakHHqDIe5dq19hLNMuYC7BCAHX6oqvE9z93gf5x.FTzvsnDu.AYDClVohb_qXFJYNNJMIroJgk1FIOeRI0b0N')" >キヤノンITS、ESETシリーズのHDD暗号化ソフト「DESlock Plus Pro」発売 </a>
  212. <a name="a6">
  213. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a6@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/b9b660fedaeff78196e041135df29afc?ul=4ELLweSiWyMyuTlEHnyLnF_VXaGsakHHqDIe5dq19hLNMuYC7BCAHX6oqvE9z93gf5x.FTzvsnDu.AYDClVohb_qXFJYNNJMIroJgk1FIOeRI0b0N')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  214. <div align=left>
  215. 【■INTERNET Watch】(Sun, 24 May 2015 21:17:11 -0700)
  216. </div>
  217. <br>
  218. <br>
  219. <a name="b7">
  220. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b7@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/589755d26cfccb9a039300fa96ea9135?ul=zRmcG2i3eJGVzTFPX4PcvYYaUr6BQtdU2YQSWW30GtIhLlweuRL0mWN1nCEs4uwNR38h6wWEh._nXoQrlO7Cihl3xfPdtDM1xU2DOFiYryA33aJEg')" >【やじうまWatch】どうなる「やじうまWatch」!?……インプレスがネタに特化したウェブメディア創刊</a>
  221. <a name="a7">
  222. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a7@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/589755d26cfccb9a039300fa96ea9135?ul=zRmcG2i3eJGVzTFPX4PcvYYaUr6BQtdU2YQSWW30GtIhLlweuRL0mWN1nCEs4uwNR38h6wWEh._nXoQrlO7Cihl3xfPdtDM1xU2DOFiYryA33aJEg')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  223. <div align=left>
  224. 【■INTERNET Watch】(Sun, 24 May 2015 20:19:47 -0700)
  225. </div>
  226. <br>
  227. <br>
  228. <a name="b8">
  229. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b8@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/ff2894481c85e8ec676aaf3729b93a92?ul=wpW3b9HlPTuSp4vyBeJ3yduodg26qb6_8vy8dEJjvlesUT_Mb.QBgXp33qsEwXugCj6gx1rIOiqLMWysan9Z5ceR7Rfm9Jgl37T._rN78CqJH6U2j')" >硬派なインプレスから“やわらか系”ウェブメディア「ネタとぴ」創刊 </a>
  230. <a name="a8">
  231. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a8@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/ff2894481c85e8ec676aaf3729b93a92?ul=wpW3b9HlPTuSp4vyBeJ3yduodg26qb6_8vy8dEJjvlesUT_Mb.QBgXp33qsEwXugCj6gx1rIOiqLMWysan9Z5ceR7Rfm9Jgl37T._rN78CqJH6U2j')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  232. <div align=left>
  233. 【■INTERNET Watch】(Sun, 24 May 2015 20:01:00 -0700)
  234. </div>
  235. <br>
  236. <br>
  237. <a name="b9">
  238. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b9@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/d9c2f733491002f2db0458412a61a11c?ul=FJ2M3QHtN99HlTEb.yXvChAr6QqjJ5rO4wu10PRoW0z3sPg5P1wQ.zRhk3vX1_MESEUAV8xMPzYdI4iHKB0i70Oft7nt5vW7l0imZeq.u6wIRNx_w0b4M48AjJ4CSpZA21ufvRY')" >【先週いちばん読まれたニュース記事は?】INTERNET Watchアクセスランキング[2015/5/18~2015/5/24]</a>
  239. <a name="a9">
  240. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a9@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/d9c2f733491002f2db0458412a61a11c?ul=FJ2M3QHtN99HlTEb.yXvChAr6QqjJ5rO4wu10PRoW0z3sPg5P1wQ.zRhk3vX1_MESEUAV8xMPzYdI4iHKB0i70Oft7nt5vW7l0imZeq.u6wIRNx_w0b4M48AjJ4CSpZA21ufvRY')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  241. <div align=left>
  242. 【■INTERNET Watch】(Sun, 24 May 2015 19:26:45 -0700)
  243. </div>
  244. <br>
  245. <br>
  246. <a name="b10">
  247. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b10@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/306a7d2bfceb8c4ee42c1af2aebc5162?ul=EGg3N6i0qze9ht4kOan3PrNQgc1dv5Lu17xl6qg3ew979Mu2MbTX9cImbxITshnYtAH9gml2yeMPB8dotyBqHYmURv4vIoYAfvCdHk1LwLYkj3PIY')" >テックウインド、QNAPの省スペース型4ベイNAS「TS-453mini」などを発売 </a>
  248. <a name="a10">
  249. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a10@@w@@http://rss.rssad.jp/rss/artclk/65HJXsnvXqde/306a7d2bfceb8c4ee42c1af2aebc5162?ul=EGg3N6i0qze9ht4kOan3PrNQgc1dv5Lu17xl6qg3ew979Mu2MbTX9cImbxITshnYtAH9gml2yeMPB8dotyBqHYmURv4vIoYAfvCdHk1LwLYkj3PIY')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  250. <div align=left>
  251. 【■INTERNET Watch】(Sun, 24 May 2015 18:00:00 -0700)
  252. </div>
  253. <br>
  254. <br>
  255. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('///x///')" >処理終了</a>
  256. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStart()">ロール開始</a>
  257. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStop()">ロール停止</a>
  258. <br>
  259. <a name="b11">
  260. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b11@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/a351be44ccdda7a155492a9aa31b0f5a?ul=FpOvzycpiWslDUsu6GJ5YeRwj3scmI39LMVk.Xh5HWIBO4gXlOr2kZX1aiOvJnKLd_joKS4yRpLLr3t2PAkAZpL5dl9L')" >G-Tune、オンラインSTG「コズミックブレイク2」推奨デスクトップを2モデル</a>
  261. <a name="a11">
  262. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a11@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/a351be44ccdda7a155492a9aa31b0f5a?ul=FpOvzycpiWslDUsu6GJ5YeRwj3scmI39LMVk.Xh5HWIBO4gXlOr2kZX1aiOvJnKLd_joKS4yRpLLr3t2PAkAZpL5dl9L')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  263. <div align=left>
  264. 【■マイナビニュース パソコン】マウスコンピューターは25日、同社のゲーミングブランド「G-Tune」から、オンラインゲーム「コズミックブレイク2」推奨ゲーミングデスクトップPCを2モデル発売した。BTOに対応し、標準構成価格(税別)は109,800円から。
  265. (Mon, 25 May 2015 03:28:23 -0700)
  266. </div>
  267. <br>
  268. <br>
  269. <a name="b12">
  270. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b12@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/481de33319b14cabba715ca2b9f5e06d?ul=AdsstgwA0Rv6gD8kgvkmH0I4J0vDGwU3QGTC6X.YnRLh08lTqZkgNhEO6LV19U8rkVQ1nGD0bSHa6b5s.u7HQvCY5Cta')" >キヤノン、パスポートも読み取れるA4ドキュメントスキャナ「DR-C240」</a>
  271. <a name="a12">
  272. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a12@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/481de33319b14cabba715ca2b9f5e06d?ul=AdsstgwA0Rv6gD8kgvkmH0I4J0vDGwU3QGTC6X.YnRLh08lTqZkgNhEO6LV19U8rkVQ1nGD0bSHa6b5s.u7HQvCY5Cta')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  273. <div align=left>
  274. 【■マイナビニュース パソコン】キヤノンマーケティングジャパンは21日、ドキュメントスキャナ「imageFORMULA」シリーズの新製品として、高速スキャンと用紙の搬送力に優れたA4対応モデル「DR-C240」を発表した。5月28日から発売し、価格はオープン、店頭予想価格(税別)は49,(Mon, 25 May 2015 02:48:42 -0700)
  275. </div>
  276. <br>
  277. <br>
  278. <a name="b13">
  279. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b13@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/c6d4d8e73e83c550bb2a04cba63578b0?ul=n7jdJV6xiqQ4XAZOV06QMSAvo0Q1BLQMxCyuczKCVqIehHkL1uXZ_BkqaytZ6oW33WfxTPB4qrcGzgEvud3xyUQCG4TG')" >六本木ヒルズで「VAIO Cafe」始動! VAIOが新製品の紹介イベント</a>
  280. <a name="a13">
  281. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a13@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/c6d4d8e73e83c550bb2a04cba63578b0?ul=n7jdJV6xiqQ4XAZOV06QMSAvo0Q1BLQMxCyuczKCVqIehHkL1uXZ_BkqaytZ6oW33WfxTPB4qrcGzgEvud3xyUQCG4TG')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  282. <div align=left>
  283. 【■マイナビニュース パソコン】VAIOは25日、2015年5月25日から29日まで、六本木ヒルズのイベントスペース「Hills Cafe/Space」にて、全VAIO製品のタッチ&トライが行えるイベント「VAIO Cafe」を開催する。この「VAIO ...(Mon, 25 May 2015 02:14:25 -0700)
  284. </div>
  285. <br>
  286. <br>
  287. <a name="b14">
  288. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b14@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/9e4df9b613677688d4eeaa692ac3ae3f?ul=02XwQOxKeamBwPQ2sBNxYfMXh_mUY.jM7fEFwMeAJaYWbizIAwP8TRF8g7DiHstLx0Sqe7zZj3jIFmYGfOLjRiaA1u.I')" >ユニットコム、辞書の形をしたMP3プレーヤー付きスピーカー</a>
  289. <a name="a14">
  290. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a14@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/9e4df9b613677688d4eeaa692ac3ae3f?ul=02XwQOxKeamBwPQ2sBNxYfMXh_mUY.jM7fEFwMeAJaYWbizIAwP8TRF8g7DiHstLx0Sqe7zZj3jIFmYGfOLjRiaA1u.I')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  291. <div align=left>
  292. 【■マイナビニュース パソコン】ユニットコムは22日、辞書のかたちをしたスピーカー「G168 HX-105」をパソコン工房の通販サイト内雑貨店「Nantena」にて販売開始した。価格は税別1,280円。
  293. (Mon, 25 May 2015 01:12:45 -0700)
  294. </div>
  295. <br>
  296. <br>
  297. <a name="b15">
  298. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b15@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/c9ea228d1f6db9cf027a8159014d1009?ul=esZVes5wzTAbKHuNHjuU8HueBpAvWoyOZRCydSy5mTyQUFWWB_psvomqlIjh4ILYPSDG.BOA1FsI8VsVXDHw1tn5d4uI')" >ユニットコム、LEDライトを5つ搭載したルーペ</a>
  299. <a name="a15">
  300. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a15@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/c9ea228d1f6db9cf027a8159014d1009?ul=esZVes5wzTAbKHuNHjuU8HueBpAvWoyOZRCydSy5mTyQUFWWB_psvomqlIjh4ILYPSDG.BOA1FsI8VsVXDHw1tn5d4uI')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  301. <div align=left>
  302. 【■マイナビニュース パソコン】ユニットコムは25日、LEDライトが付いたルーペ「【LED 搭載ハンディールーペ(拡大鏡)】G226 THE MAGNIFIER」をパソコン工房の通販サイト内雑貨店「Nantena」にて発売した。価格は税込539円。
  303. (Mon, 25 May 2015 00:20:42 -0700)
  304. </div>
  305. <br>
  306. <br>
  307. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('///x///')" >処理終了</a>
  308. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStart()">ロール開始</a>
  309. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStop()">ロール停止</a>
  310. <br>
  311. <a name="b16">
  312. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b16@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/05b8b81547cd34e6bbb773aa34127a66?ul=qjfWXqquQJ8mX_QRKk1B1Eo0.48qzS8HxkeLM4fKOMyvRaqRcmXT09rSOhaSkWhB5RD_6XU.vtO3QNlJSmK8asY5Zfkx')" >【レポート】今週の秋葉原情報 - USB3.1オンボードのASUSマザーが発売に、初のUSB3.1対応HDDクレードルも</a>
  313. <a name="a16">
  314. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a16@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/05b8b81547cd34e6bbb773aa34127a66?ul=qjfWXqquQJ8mX_QRKk1B1Eo0.48qzS8HxkeLM4fKOMyvRaqRcmXT09rSOhaSkWhB5RD_6XU.vtO3QNlJSmK8asY5Zfkx')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  315. <div align=left>
  316. 【■マイナビニュース パソコン】ASUSから、新インタフェースUSB3.1を搭載したマザーボードが3種類登場、発売が開始された。同社からは先月もUSB3.1対応モデルが発売されているが、今回のモデルは拡張カードの付属ではなく、USB3.1ポートがオンボード実装されている点が特徴。なおイン(Sun, 24 May 2015 23:19:20 -0700)
  317. </div>
  318. <br>
  319. <br>
  320. <a name="b17">
  321. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b17@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/8a9e8c5809b6a8d2a8f119bb79cf63f0?ul=d9Ahz4yIIz8WfPQS78i4RKc24W8uGecTD8ZwMmP1B8q0vfiSXd_qKe9Qn4wvpTwdvLJTjv3p_uK8XpdNukqiFp9yrklk')" >【インタビュー】iPhoneographerの肖像 - 「iPhoneで撮った写真は、写真という枠を飛び出たものだと感じることがあります」今泉純さん</a>
  322. <a name="a17">
  323. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a17@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/8a9e8c5809b6a8d2a8f119bb79cf63f0?ul=d9Ahz4yIIz8WfPQS78i4RKc24W8uGecTD8ZwMmP1B8q0vfiSXd_qKe9Qn4wvpTwdvLJTjv3p_uK8XpdNukqiFp9yrklk')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  324. <div align=left>
  325. 【■マイナビニュース パソコン】現在、アップルがワールドワイドで展開しているiPhone 6の広告キャンペーン"Shot on iPhone 6"。Webサイトでは、iPhone ...(Sun, 24 May 2015 20:00:00 -0700)
  326. </div>
  327. <br>
  328. <br>
  329. <a name="b18">
  330. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b18@@w@@http://rss.rssad.jp/rss/ad/Z0MvSekydyOK/h5_l6u80El2Q?type=2&ent=8a9e8c5809b6a8d2a8f119bb79cf63f0')" >PR: サイバー犯罪から大事な自分の情報を守ろう-政府ITV</a>
  331. <a name="a18">
  332. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a18@@w@@http://rss.rssad.jp/rss/ad/Z0MvSekydyOK/h5_l6u80El2Q?type=2&ent=8a9e8c5809b6a8d2a8f119bb79cf63f0')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  333. <div align=left>
  334. 【■マイナビニュース パソコン】 そのクリック、ちょっと待って!海外から狙われる情報セキュリティについて動画で解説 Ads by Trend Match(Sun, 24 May 2015 20:00:00 -0700)
  335. </div>
  336. <br>
  337. <br>
  338. <a name="b19">
  339. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b19@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/b0ef187e1229f0efb75222aa924f2a8e?ul=_qdqv8DX3IbF2h0Zp0nIreMrpobyowyYYoyNpv.D6IdVvOF1w654rWTGMFr54kQmbknogHCG5xixQgYvGPMvJE_D9qZx')" >5色のカラバリ、新しいMacBook用のおしゃれなレザーケース</a>
  340. <a name="a19">
  341. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a19@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/b0ef187e1229f0efb75222aa924f2a8e?ul=_qdqv8DX3IbF2h0Zp0nIreMrpobyowyYYoyNpv.D6IdVvOF1w654rWTGMFr54kQmbknogHCG5xixQgYvGPMvJE_D9qZx')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  342. <div align=left>
  343. 【■マイナビニュース パソコン】ロア・インターナショナルは25日、SLG Designブランドの新しいMacBook 12インチ用スタンドケース「D5 Artificial ...(Sun, 24 May 2015 19:54:21 -0700)
  344. </div>
  345. <br>
  346. <br>
  347. <a name="b20">
  348. <a id="buttonx" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('b20@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/867e274ea3e17133e91fc7eb1c94e966?ul=rVUTy9rpoHTzOKicUFSD4fwLyZTnCqW0TFldV.nEh7_KnAqcDkxmg_3Azy3cgCsDymGp601RPYvmy7FjBystm2ddburN')" >【レビュー】驚きの高性能を見せつけた新ビジネスモバイルPC - VAIO「VAIO Pro 13 | mk2」</a>
  349. <a name="a20">
  350. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('a20@@w@@http://rss.rssad.jp/rss/artclk/Z0MvSekydyOK/867e274ea3e17133e91fc7eb1c94e966?ul=rVUTy9rpoHTzOKicUFSD4fwLyZTnCqW0TFldV.nEh7_KnAqcDkxmg_3Azy3cgCsDymGp601RPYvmy7FjBystm2ddburN')" ><i class="fa fa-play-circle"></i> 外部リンク</a>
  351. <div align=left>
  352. 【■マイナビニュース パソコン】VAIOが25日に発表した「VAIO Pro 13 | mk2」は、ビジネス向けにD-Sub端子やLANポートを備え、特に堅牢性・頑丈性に大きな工夫がなされた仕事道具に仕上がっている。その使い勝手は果たしてどうなのか? 本稿では、第5世代Core ...(Sun, 24 May 2015 18:30:00 -0700)
  353. </div>
  354. <br>
  355. <br>
  356. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('///x///')" >処理終了</a>
  357. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStart()">ロール開始</a>
  358. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';ScrollStop()">ロール停止</a>
  359. <br>
  360. <br>
  361.  
  362. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('///y///')" >キーワード登録</a>
  363. <a id="buttony" onmouseover="this.style.background='#43cd80'" onmouseout="this.style.background='#337fcc'" onclick="this.style.background='#43cd80';doDataLink('///x///')" >処理終了</a>
  364. <br>
  365.  
  366.  
  367. </div>
  368.  
  369. </body>
  370.  
  371. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement