Mercurial > hg > Members > oc > slide
view blank.html @ 2:7f9d2ff07b47
update
author | oc |
---|---|
date | Tue, 18 Nov 2014 17:24:03 +0900 |
parents | d13d5e009ef8 |
children | 366d910bad07 |
line wrap: on
line source
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <title>Seminar</title> <!-- Notes on CSS media types used: 1) projection -> slideshow mode (display one slide at-a-time; hide all others) 2) screen -> outline mode (display all slides-at-once on screen) 3) print -> print (and print preview) Note: toggle between projection/screen (that is, slideshow/outline) mode using t-key Questions, comments? - send them along to the mailinglist/forum online @ http://groups.google.com/group/webslideshow --> <!-- style sheet links --> <link rel="stylesheet/less" href="themes/blank/projection.css.less" media="screen,projection"> <link rel="stylesheet/less" href="themes/blank/screen.css.less" media="screen"> <link rel="stylesheet/less" href="themes/blank/print.css.less" media="print"> <link rel="stylesheet/less" href="blank.css.less" media="screen,projection"> <!-- Notes about less css support - all less stylesheets (*.css.less) need to get listed/loaded first (before the less.js script) - find more info about less.js online @ http://lesscss.org ***** NOTE: less.js browser script currently won’t work if you’re using Google Chrome and the path to your page starts with "file:///" due to a known Chrome issue. (In the developer/js console you will see: XMLHttpRequest cannot load file:///../s6/shared/projection.css.less. Cross origin requests are only supported for HTTP.) --> <!-- add js libs (less, jquery) --> <script src="js/less-1.1.4.min.js"></script> <script src="js/jquery-1.7.min.js"></script> <!-- S6 JS --> <script src="js/jquery.slideshow.js"></script> <script src="js/jquery.slideshow.counter.js"></script> <script src="js/jquery.slideshow.controls.js"></script> <script src="js/jquery.slideshow.footer.js"></script> <script src="js/jquery.slideshow.autoplay.js"></script> <script> $(document).ready( function() { Slideshow.init(); // Example 2: Start Off in Outline Mode // Slideshow.init( { mode: 'outline' } ); // Example 3: Use Custom Transition // Slideshow.transition = transitionScrollUp; // Slideshow.init(); // Example 4: Start Off in Autoplay Mode with Custom Transition // Slideshow.transition = transitionScrollUp; // Slideshow.init( { mode: 'autoplay' } ); } ); </script> <!-- Better Browser Banner for Microsoft Internet Explorer (IE) --> <!--[if IE]> <script src="js/jquery.microsoft.js"></script> <![endif]--> </head> <body> <div class="layout"> <div id="header"></div> <div id="footer"> <div align="right"> <img src="images/concurrency.png" width="200"> </div> </div> </div> <div class="presentation"> <!-- add slides here; example --> <div class='slide cover'> <table width="90%" height="90%" border="0" align="center"> <tr> <td><div align="center"> <h1><font color="#808db5">TreeVNC</font></h1> </div></td> </tr> <tr> <td><div align="left"> Miwa Oshiro <script> var date = new Date(); var year = date.getFullYear(); var month = date.getMonth(); var day = date.getDate(); var monthList = new Array("January","February","March","April","May","June", "July","August","September","October","November","December"); document.write(monthList[month]+" "+day+", "+year); </script> <hr style="color:#ffcc00;background-color:#ffcc00;text-align:left;border:none;width:300%;height:0.2em;"> </div></td> </tr> </table> </div> <div class='slide'> <h2>研究目的</h2> <p>本研究では、ゼミや講義をする際に、</p> <ul> <li>プレゼンテーションの資料が見えない、聴こえないといった問題を失くすこと</li> <li>スムーズな画面表示・画面の切り替えが行うこと</li> <li>綺麗な画質を保ちながらプレゼンテーションすること</li> <li>参加者同士が充分なコミュニケーションを取れること</li> </ul> <p>を目的としている。</p> </div> <div class='slide'> <h2>研究目的を果たすための中間目標</h2> <ul> <li>遠距離の人も、ゼミ・授業に参加できること</li> <ul> <li>同一ネットワークの外からTreeVNCに接続できるように</li> <li>遠距離なので、音声の共有も必要になる</li> </ul> </ul> </div> <div class='slide'> <h2>やってきたこと</h2> <p>OSの授業で取ってもらったログから、<br> gnuplotを用いて、グラフの作成をしてきました。</p> </div> <div class='slide'> <h2>checkDelayを用いたグラフの作成</h2> <h3>要素</h3> <ul> <li>checkDelayで、rootからnode間のtime</li> <li>framebufferUpdateで送信されてくるsize</li> </ul> <h3>やりたかったこと</h3> <ul> <li>変更された画面サイズにより、どれくらいの遅延が発生するのか</li> </ul> <h3>結果</h3> <ul> <li>無線の場合だと、予測していたデータが取れた。</li> <li>有線の場合だと、checkDelayの送信と受信の間に画像データが来なかった。</li> <ul> <li>有線の場合のグラフは作れませんでした。</li> </ul> </ul> </div> <div class='slide'> <h2>グラフ作成の問題</h2> <ul> <li>授業で接続できない問題</li> <ul> <li>パネルが出るのが遅い</li> <li>画面が真っ暗になる</li> </ul> <li>接続する機器が少ないからログがあまり取れなかった</li> <li>node番号がずれていた</li> </ul> </div> <div class='slide'> <h2>今後の課題</h2> <ul> <li>ログ取るためにも、安定した接続が出来るように...</li> <ul> <li></li> </ul> <li></li> <li></li> </ul> </div> <div class='slide'> <h2>図</h2> <center> <object data="images/node1.pdf" width="600" height="600"> </center> </div> </div> <!-- presentation --> </body> </html>