Flash UI

Size: px
Start display at page:

Download "1 1 2 2 3 3 3.1............................. 3 4 5 4.1 Flash.............................................. 5 4.2 UI..................................."

Transcription

1 2011 Web 08H034

2 Flash UI Web GoogleAppEngine Web Web A 26 A.1 main.py

3 A.2 main.js

4 1 1 [1] 1 Web Web Web Web 1

5 2 [1] Web [2 4] Web 2

6 3 3.1 [1] 3 ( )

7 2 4

8 4 [5] ( ) ( ) Flash UI 4.1 Flash Adobe Flash Player9 Flash Player Flash 4.2 UI 4.3 5

9 5 Web Web Web GoogleAppEngine [6]( GAE) 5.1 GoogleAppEngine GAE Google 1 Python Java Web Google *1 GAE Python Java *2 ( SDK) SDK (Python appcfg.py) Web ID ID Google Google GAE Create an Application ID appspot.com ID URI *1 *2 6

10 6 1 1 HTML [7] JavaScript [8, 9] GAE Web Python SDK Python HTML JavaScript JavaScript jquery [10] CSS [11]

11 URL 5-9 8

12 5 6 TOP 9

13 7 8 10

14 9 11

15 6.2 ( 3) ( a4w) a4w a4w a4w 6.3 ( 4) a4w : : : : : : : : 1 : 1 : : 1 : 10 a4w , 12 12

16 10 a4w 13

17

18 Web 1. Web

19 13-17 NC % NC Web % NC

20 % NC % NC

21

22 8 Web 8.1 Web 1 2 Web 1 *3 Web 2 *4 1 2 Web *5 4 * *3 Web *4 *5 *6 19

23 9 Web Web Web Web Web 20

24 Web 21

25 10 Web

26

27 24

28 [1]..,, (2010). [2].., pp , (2005). [3].., pp , (1998). [4]. java., pp. 1 8, (2006). [5]. [6] Googleappengine. [7] Html. [8] saki. eweb( ). [9] javascript. [10] jquery. [11] Html :css. 25

29 A A.1 main.py #coding: utf-8 import cgi import wsgiref.handlers from google.appengine.ext import webapp def load_map(mapselect): map = [] file_open = open(mapselect).readlines() for line in file_open: line = line.rstrip() map.append([str(mozi) for mozi in list(line)]) return map def text_field(input): input( <form id="input_form"> <table> <tr> <td> </td> <td><input type="button" value=" " id="input_up" class="button" onclick="input(\ w\, id_el)"></td> <td> </td> </tr> <tr> <td><input type="button" value=" " id="input_left" class="button" onclick="input(\ a\, id_el)"></td> <td> </td> <td><input type="button" value=" " id="input_right" class="button" onclick="input(\ d\, id_el)"></td> </tr> <tr> <td> </td> <td><input type="button" value=" " id="input_down" class="button" onclick="input(\ s\, id_el)"></td> 26

30 <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td><input type="button" value=" " id="input_up_jump" class="button" onclick="input(\ k\, id_el)"></td> <td> </td> </tr> <tr> <td><input type="button" value=" " id="input_left_jump" class="button" onclick="input(\ h\, id_el)"></td> <td> </td> <td><input type="button" value=" " id="input_right_jump" class="button" onclick="input(\ l\, id_el)"></td> </tr> <tr> <td> </td> <td><input type="button" value=" " id="input_down_jump" class="button" onclick="input(\ j\, id_el)"></td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td><input type="button" value="1 " class="button" onclick="one_clear(id_el)"></td> </tr> <tr> <td><input type="button" value=" " id="zikkou" class="button" onclick="execute()"></td> <td> </td> <td><input type="button" value=" " class="button" onclick="all_clear(id_el)"></td> </tr> <tr> 27

31 <td> </td> <td> </td> <td> </td> </tr> <tr> <td><input type="button" style="display: none" value=" 1 " id="koshin" onclick="koshin()"></td> <td> </td> <td> </td> </tr> </table> </form> ) def comm_text(comm): comm( <div id="commtext"> </div> ) def text_view(view): view( <div id=\"textview\"></div> ) def map_create(self, open_map): dict = {"0":"hole.png", "1":"carpet.png", "2":"dansa1.png", "3":"dansa2.png", "4":"dansa3.png", "5":"dansa4.png", "9":"cola2.png" self.response.out.write("<html>") self.response.out.write("<head>") self.response.out.write("<meta charset=\"utf-8\">") self.response.out.write("<title> </title>") self.response.out.write("<script type=\"text/javascript\" src=\"js/jquery min.js\"> </script>") self.response.out.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"css/main.css\">") self.response.out.write("<style type= text/css >\n<!--\n") for y in range(len(open_map)): for x in range(len(open_map[y])): self.response.out.write( tr.imagebox td#m%s{ background-image: url(data/%s); width: 32px; height: 32px; 28

32 % (str(y)+ _ +str(x), dict[open_map[y][x]])) self.response.out.write("-->\n</style>") self.response.out.write("</head>\n") self.response.out.write("<body>\n") self.response.out.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">") for y in range(len(open_map)): self.response.out.write("<tr class=\"imagebox\">") for x in range(len(open_map[y])): self.response.out.write("<td id=\"m%s\"><img src=\"data/toumei.png\"></td>\n" % (str(y)+"_"+str(x))) self.response.out.write("</tr>\n") self.response.out.write("</table>") text_field(self.response.out.write) comm_text(self.response.out.write) text_view(self.response.out.write) self.response.out.write("<script type=\"text/javascript\" src=\"js/main.js\"></script>") def map_create_last(self): self.response.out.write("</body>") self.response.out.write("</html>") class Map01(webapp.RequestHandler): def get(self): self.map = load_map( 01.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 8; var x = 8; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 01</p> <a href=\" </a><div> ) map_create_last(self) class Map02(webapp.RequestHandler): 29

33 def get(self): self.map = load_map( 02.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 3; var x = 4; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 02</p> <a href=\" </a><div> ) map_create_last(self) class Map03(webapp.RequestHandler): def get(self): self.map = load_map( 03.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 5; var x = 6; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 03</p> <a href=\" </a><div> ) map_create_last(self) class Map04(webapp.RequestHandler): def get(self): self.map = load_map( 04.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 5; var x = 12; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 04</p> 30

34 <a href=\" </a><div> ) map_create_last(self) class Map05(webapp.RequestHandler): def get(self): self.map = load_map( 05.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 12; var x = 9; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 05</p> <a href=\" </a><div> ) map_create_last(self) class Map06(webapp.RequestHandler): def get(self): self.map = load_map( 06.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 13; var x = 8; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 06</p> <a href=\" </a><div> ) map_create_last(self) class Map07(webapp.RequestHandler): def get(self): self.map = load_map( 07.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 12; 31

35 var x = 11; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 07</p> <a href=\" </a><div> ) map_create_last(self) class Map08(webapp.RequestHandler): def get(self): self.map = load_map( 08.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 11; var x = 3; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 08</p> <a href=\" </a><div> ) map_create_last(self) class Map09(webapp.RequestHandler): def get(self): self.map = load_map( 09.txt ) map_create(self, self.map) self.response.out.write( <script type="text/javascript" language="javascript"> var y = 8; var x = 1; $(\ td#m + y + _ + x + img\ ).attr("src","data/andrew.png"); </script> ) self.response.out.write( <div class=\"link\"><hr><p>stage 09</p> <a href=\" </a><div> ) map_create_last(self) class Index(webapp.RequestHandler): def get(self): 32

36 self.response.out.write( <html> <head> <META http-equiv="content-type" content="text/html; charset=utf-8"> <link rel="stylesheet" type="text/css" href="css/ex.css"> <title> index</title> </head> <body> <h1> Web </h1> <hr> <h2> </h2> Debian 6.0.3<br> Google Chrome <br> Firefox 8.0<br> <br> CentOS release 5.3 (Final)<br> Mozilla/5.0 (X11; U; Linux i686; ja; rv: ) Gecko/ CentOS/ el5.centos Firefox/3.0.6<br> <br> Microsoft(R)Windows Version 5.1 (Build 2600 xpsp_sp3_gdr :service Pack 3)<br> Firefox 4.0.1<br> <br> <hr> <h2> </h2> <h3> </h3> <li> <img src="data/andrew.png" width="32" height="32" alt=" ">( ) <img src="data/cola2.png" width="32" height="32" alt=" "> GET </li> <li>stage <img src="data/dansa1.png" width="32" height="32" alt=" "> <img src="data/dansa3.png" width="32" height="32" alt=" "> </li> <li> GET </li> <li>stage <img src="data/hole.png" width="32" height="32" alt=" "> GAME OVER </li> <li> </li> <h3> </h3> <li> </li> 33

37 <li> 24 </li> <li><button> </button> </li> <li> <button> 1 </button> </li> <li><button> 1 </button> </li> <li>top TOP </li> <br> <h4> </h4> <li><button> </button> </li> <li><button> </button> </li> <li><button> </button> </li> <li><button> </button> </li> <br> <li><button> </button> </li> <li><button> </button> </li> <li><button> </button> </li> <li><button> </button> </li> <br> <li><button>1 </button> </li> <li><button> </button> </li> <br> <li> </li> <img src="data/command.png" alt=" "> <hr> "></td> <h3>stage </h3> <table> <tr> <td class="image"><img src="data/carpet.png" width="32" height="32" alt=" <td><li> </li> <li> </li> <li> </td> </tr> "></td> <tr> <td class="image"><img src="data/hole.png" width="32" height="32" alt=" <td><li> GAME OVER </li> <li> </li></td> </tr> 34

38 "></td> </li></td> <tr> <td class="image"><img src="data/cola2.png" width="32" height="32" alt=" <td><li> </li> <li> GET <li> </li> <li> GET </tr> <tr> <td class="image"><img src="data/dansa1.png" width="32" height="32" alt=" "><br> <img src="data/dansa2.png" width="32" height="32" alt=" "></td> <td><li> 1 2 </li> <li> </li> <li> </li> </td> </tr> <tr> <td class="image"><img src="data/dansa3.png" width="32" height="32" alt=" "><br> <img src="data/dansa4.png" width="32" height="32" alt=" "></td> <td><li> </li> <li> </li> <li> 3 4 </li></td> </tr> </table> <br> <hr> <h3 id="index">stage </h3> <p> STAGE </p> <a href=" 01</a> <a href=" style="text-decoration: none;"> 35

39 <img src="data/stage01.png" width="32" height="32" alt="stage01"></a> <a href=" 04</a> <a href=" style="text-decoration: none;"> <img src="data/stage04.png" width="32" height="32" alt="stage04"></a> <a href=" 07</a> <a href=" style="text-decoration: none;"> <img src="data/stage07.png" width="32" height="32" alt="stage07"></a><br> <a href=" 02</a> <a href=" style="text-decoration: none;"> <img src="data/stage02.png" width="32" height="32" alt="stage02"></a> <a href=" 05</a> <a href=" style="text-decoration: none;"> <img src="data/stage05.png" width="32" height="32" alt="stage05"></a> <a href=" 08</a> <a href=" style="text-decoration: none;"> <img src="data/stage08.png" width="32" height="32" alt="stage08"></a><br> </html> ) </body> <a href=" 03</a> <a href=" style="text-decoration: none;"> <img src="data/stage03.png" width="32" height="32" alt="stage03"></a> <a href=" 06</a> <a href=" style="text-decoration: none;"> <img src="data/stage06.png" width="32" height="32" alt="stage06"></a> <a href=" 09</a> <a href=" style="text-decoration: none;"> <img src="data/stage09.png" width="32" height="32" alt="stage09"></a><br><br> <hr> def main(): application = webapp.wsgiapplication([( /, Index), ( /map01, Map01), ( /map02, Map02), ( /map03, Map03), ( /map04, Map04), ( /map05, Map05), ( /map06, Map06), ( /map07, Map07), ( /map08, Map08), ( /map09, Map09), 36

40 ], debug=true) wsgiref.handlers.cgihandler().run(application) if name == " main ": main() A.2 main.js <!-- var list = new Array(); var command_max = 24; var decision = 0; var nocount = 0; var id_el = textview ; var str; var move; var jump_move; var jump = 0; var count = 1; var i = 0; //---get the background-imgae path // //var carpet = "url( //var hole = "url( //var cola = "url( //var dansa1 = "url( //var dansa2 = "url( //var dansa3 = "url( //var dansa4 = "url( //Chrome var carpet = "url( var hole = "url( var cola = "url( var dansa1 = "url( var dansa2 = "url( var dansa3 = "url( var dansa4 = "url( 37

41 //Firefox var f_carpet = "url(\" var f_hole = "url(\" var f_cola = "url(\" var f_dansa1 = "url(\" var f_dansa2 = "url(\" var f_dansa3 = "url(\" var f_dansa4 = "url(\" // function Koshin(){ location.reload(); function execution_after_alert(){ alert(" [ ] TOP "); function call_alert(){ alert(" [ ] TOP "); function not_goal_alert(){ alert(" ") alert(" "); function goal_alert(){ alert(" GET "); function hole_alert(){ alert(" "); alert(" "); alert("game OVER"); function text_view(id){ var el_id = document.getelementbyid(id); var text = document.createtextnode(str); 38

42 el_id.appendchild(text); function commandclear(id){ if(document.getelementbyid){ var obj=document.getelementbyid(id); if(obj.lastchild) obj.removechild(obj.lastchild); function one_clear(id){ if(decision == 0){ commandclear(id); list.pop(); i--; else{ call_alert(); function allcommandclear(id){ var obj=document.getelementbyid(id); while (obj.firstchild) obj.removechild(obj.firstchild); function all_clear(id){ if(decision == 0){ if(list.length == 0){ alert(" "); else{ alert(" "); list.length = 0; allcommandclear(id); i = 0; else{ execution_after_alert(); function input(key, id) { 39

43 if(decision == 0){ if (key == "w" "a" "d" "s" "k" "j" "h" "l") { if(i < command_max){ nocount = 1; list[i] = key; i = i + 1; if(key == "w"){ str = " "; text_view(id); else if(key == "a"){ str = " "; text_view(id); else if(key == "s"){ str = " "; text_view(id); else if(key == "d"){ str = " "; text_view(id); else if(key == "k"){ str = " "; text_view(id); else if(key == "j"){ str = " "; text_view(id); else if(key == "h"){ str = " "; text_view(id); else if(key == "l"){ str = " "; text_view(id); else{ alert(" "); else{ alert(" "); else{ alert(" "); else{ execution_after_alert(); 40

44 function js_notmove(){ if(move == "w"){ y = y + 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); else if(move == "s"){ y = y - 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); else if(move == "a"){ x = x + 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); else if(move == "d"){ x = x - 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); function js_jump_notmove_carpet(){ if(jump_move == "k"){ y = y + 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); else if(jump_move == "j"){ y = y - 1; 41

45 alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); else if(jump_move == "h"){ x = x + 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); else if(jump_move == "l"){ x = x - 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); function js_jump_notmove_dansa(){ if(jump_move == "k"){ y = y + 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); else if(jump_move == "j"){ y = y - 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); else if(jump_move == "h"){ x = x + 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); 42

46 else if(jump_move == "l"){ x = x - 1; alert(" "); if(list.length == count){ not_goal_alert(); call_alert(); function dansa1_2(){ if(jump == 0){ js_notmove(); if(jump_move == "k" jump_move == "j" jump_move == "h" jump_move == "l"){ jump = 1; if(list.length == count){ not_goal_alert(); call_alert(); else if(jump == 1){ js_jump_notmove_carpet(); if(list.length == count){ not_goal_alert(); call_alert(); else if(jump == 2){ if(move == "d" move == "a" move == "w" move == "s"){ jump = 1; if(list.length == count){ not_goal_alert(); call_alert(); js_jump_notmove_carpet(); function dansa3_4(){ if(jump == 0){ js_notmove(); js_jump_notmove_dansa(); 43

47 else if(jump == 1){ js_notmove(); if(jump_move == "k" jump_move == "j" jump_move == "h" jump_move == "l"){ jump = 2; if(list.length == count){ not_goal_alert(); call_alert(); else if(jump == 2){ js_jump_notmove_carpet(); if(list.length == count){ not_goal_alert(); call_alert(); function event(){ var backimgname = ($( td#m + y + _ + x + ).css( background-image )); // if(backimgname == cola backimgname == f_cola){ if(move == "d" move == "a" move == "w" move == "s"){ if(list.length == count){ goal_alert(); call_alert(); js_jump_notmove_carpet(); // else if(backimgname == carpet backimgname == f_carpet){ if(jump == 0 jump == 1){ if(move == "d" move == "a" move == "w" move == "s"){ jump = 0; if(list.length == count){ not_goal_alert(); call_alert(); js_jump_notmove_carpet(); else if(jump == 2){ if(move == "d" move == "a" move == "w" move == "s"){ jump = 0; 44

48 alert(" ") if(list.length == count){ not_goal_alert(); call_alert(); js_jump_notmove_carpet(); // else if(backimgname == hole backimgname == f_hole){ list.length = 0; list.length = 1; hole_alert(); call_alert(); // else if(backimgname == dansa1 backimgname == f_dansa1){ dansa1_2(); else if(backimgname == dansa2 backimgname == f_dansa2){ dansa1_2(); else if(backimgname == dansa3 backimgname == f_dansa3){ dansa3_4(); else if(backimgname == dansa4 backimgname == f_dansa4){ dansa3_4(); function andrew_view_and_move(){ for(k in list){ if(list[k] == "d"){ $( td#m + y + _ + x + img ).attr("src","data/toumei.png"); move = "d"; jump_move = ""; x = x + 1; event() count = count + 1; $( td#m + y + _ + x + img ).attr("src","data/andrew_right.png"); else if(list[k] == "a"){ $( td#m + y + _ + x + img ).attr("src","data/toumei.png"); move = "a"; 45

49 jump_move = ""; x = x - 1; event(); count = count + 1; $( td#m + y + _ + x + img ).attr("src","data/andrew_left.png"); else if(list[k] == "w"){ $( td#m + y + _ + x + img ).attr("src","data/toumei.png"); move = "w"; jump_move = ""; y = y - 1; event(); count = count + 1; $( td#m + y + _ + x + img ).attr("src","data/andrew_top.png"); else if(list[k] == "s"){ $( td#m + y + _ + x + img ).attr("src","data/toumei.png"); move = "s"; jump_move = ""; y = y + 1; event(); count = count + 1; $( td#m + y + _ + x + img ).attr("src","data/andrew.png"); else if(list[k] == "k"){ $( td#m + y + _ + x + img ).attr("src","data/toumei.png"); jump_move = "k"; move = ""; y = y - 1; event(); count = count + 1; $( td#m + y + _ + x + img ).attr("src","data/andrew_top.png"); else if(list[k] == "j"){ $( td#m + y + _ + x + img ).attr("src","data/toumei.png"); jump_move = "j"; move = ""; y = y + 1; event(); count = count + 1; $( td#m + y + _ + x + img ).attr("src","data/andrew.png"); else if(list[k] == "h"){ 46

50 $( td#m + y + _ + x + img ).attr("src","data/toumei.png"); jump_move = "h"; move = ""; x = x - 1; event(); count = count + 1; $( td#m + y + _ + x + img ).attr("src","data/andrew_left.png"); else if(list[k] == "l"){ $( td#m + y + _ + x + img ).attr("src","data/toumei.png"); jump_move = "l"; move = ""; x = x + 1; event(); count = count + 1; $( td#m + y + _ + x + img ).attr("src","data/andrew_right.png"); function execute(){ var k; if(decision == 0){ decision = 1; if(list[i] == "w" "a" "d" "s" "k" "j" "h" "l"){ andrew_view_and_move(); if(list.length == 0){ alert(" "); else{ execution_after_alert(); $(document).ready(function(){ $("input#zikkou").click(function () { $("input#koshin").show("slow"); ); ); $(document).ready(function(){ $("input#zikkou").click(function () { 47

51 $("input.button").hide("slow"); ); ); //--> 48

コンピュータサイエンス 4. ウェブプログラミング

コンピュータサイエンス 4. ウェブプログラミング 4. Chris Plaintail 2014 1 / 43 1 HTML CSS 2 JavaScript DOM jquery 3 4 PHP SQL PHP SQL 2 / 43 HTML HTML CSS HTML Ajax (Asynchronous JavaScript + XML) PHP SQL 3 / 43 HTML, CSS http, https CSS HTML CSS.html

More information

(1) <html>,,,,, <> ( ) (/ ) (2) <!DOCTYPE html> HTML5 (3) <html> HTML (4) <html lang= ja > html (ja) (5) JavaScript CSS (6) <meta charset= shift jis >

(1) <html>,,,,, <> ( ) (/ ) (2) <!DOCTYPE html> HTML5 (3) <html> HTML (4) <html lang= ja > html (ja) (5) JavaScript CSS (6) <meta charset= shift jis > HTML HTML HyperText Markup Language (Markup Language) (< > ) 1 sample0.html ( ) html sample0.html // JavaScript

More information

JavaScriptプログラミング入門

JavaScriptプログラミング入門 JavaScript 2015 8 15 1 2 1.1 JavaScript.................................. 2 1.2..................................... 3 1.3 if................................... 4 2 6 2.1.....................

More information

コンピュータサイエンス 1. ウェブの基本

コンピュータサイエンス 1. ウェブの基本 1. Chris Plaintail May 18, 2016 1 / 27 1 2 HTML HTML 3 CSS style 2 / 27 HTML HTML HTML HTML CSS HTML CSS 3 / 27 4 / 27 HTML HTML, CSS HTML, CSS http, https file CSS HTML CSS.html PC file:// PC.html 5 /

More information

: 1/15( ): HTML web page (2) 1/18( ): (1) 1/25( ): (2) 1

: 1/15( ): HTML web page (2) 1/18( ): (1) 1/25( ): (2) 1 : 1/15( ): HTML web page (2) 1/18( ): (1) 1/25( ): (2) 1 2 : : 1 1 : 3 : 2 (.ppsx) (A0nxxyyy.ppsx) presen (1 ) ID:A0nxxyyy Name: Title: 3 HTML (HyperText Markup Language) 4 ( ) http://pweb.cc.sophia.ac.jp

More information

あいち電子自治体ガイドライン(第1章)

あいち電子自治体ガイドライン(第1章) 1-1 HTML/XHTML 5 1-2 h 6 1-3 TITLE 7 1-4 8 1-5 9 1-6 10 1-7 11 1-8 12 2-1 13 2-2 14 2-3 15 2-4 16 2-5 17 2-6 18 2-7 19 2-8 20 3-1 21 3-2 22 3-3 23 3-4 24 3-5 25 3-6 4 26 3-7 27 3-8 28 - i - 4-1 29 4-2

More information

1 1 1............................ 1 2 jquery........................ 2 3................ 3 4................... 3 2 4 1..............................

1 1 1............................ 1 2 jquery........................ 2 3................ 3 4................... 3 2 4 1.............................. 1 1 1............................ 1 2 jquery........................ 2 3................ 3 4................... 3 2 4 1.............................. 4 2.............................. 6 3...........................

More information

untitled

untitled MoogaOne 1. MoogaOne... 1 2. MoogaOne... 1 3.... 1 4.... 1 5.... 2 6.... 2 1.... 2 2.... 2 3. Template.htm... 2 4. index.htm... 4 [ ]... 4 5.... 4 6.... 6 7.... 6 8.... 6 [Template.htm Template-e.htm

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web 1 Web Web 1 Web HTML 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML HTML5 takahagi

More information

textbook.indd

textbook.indd 02 XHTML+CSS part2 CSS Topics 前 回 習 得 した 基 礎 CSS を 元 に ボックス CLASS ID の 概 念 を 習 得 ボックスレイアウトを 用 いた 2 カラムのサイト 構 築 をします An Introduction to Webdesign + XHTML/CSS Coding 18 01. XHTML+CSS 2 19 20 21 22 23 24

More information

■新聞記事

■新聞記事 情 報 処 理 C (P.1) 情 報 処 理 C (2016 年 度 ) ホームページ 作 成 入 門 テキストエディタ(メモ 帳 TeraPad など)でHTMLファイルを 作 成 する HTML(Hyper Text Markup Language ) ホームページを 記 述 するための 言 語 のこと テキストエディタの 起 動 (TeraPad の 場 合 ) [スタート]-[プログラム]-[テキストエディタ]-[TeraPad]

More information

1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2.....................

1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2..................... CSS 0348085 1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2..................... 3 3........................... 5 3 CSS

More information

html ソース <HTML> <HEAD> <META charset="cp932" /> <TITLE>MPC 通 信 サンプル</TITLE> <SCRIPT src="http://code.jquery.com/jquery-1.11.1.min.js"></script> <SCRIP

html ソース <HTML> <HEAD> <META charset=cp932 /> <TITLE>MPC 通 信 サンプル</TITLE> <SCRIPT src=http://code.jquery.com/jquery-1.11.1.min.js></script> <SCRIP テーマ Application Note Ref No: an2k-050 Last Modify 160428 Raspberry Pi でネットワークにアクセスする 使 用 機 器 MPC-2000 シリーズ, USB-RS,Raspberry Pi2 イメージ 名 刺 サイズのコンピュータ Raspberry Pi に Web サーバーを 乗 せて MPC の 状 態 を 取 得 変 更 します

More information

2. HTML 2 3. 1 1 100 6 4. csh AWK 4. 4. AWK 1., 2., 3. 2 HTML HTML HyperText Markup Language WWW WWW (.html

2. HTML 2 3. 1 1 100 6 4. csh AWK 4. 4. AWK 1., 2., 3. 2 HTML HTML HyperText Markup Language WWW WWW (.html 1. 1 AWK HTML 18 8 14 1 HTML Yahoo! 3 Yahoo! (http://www.yahoo.co.jp/) 1 Yahoo! : http://headlines.yahoo.co.jp/hl ( ) ( ) Netscape 3.04 1. 2 Netscape 3.04 2. 1 Yahoo! 2. HTML 2 3. 1 1 100 6 4. csh AWK

More information

1 1 1........................ 1 2........................ 1 3 JavaScript..................... 2 4................... 2 2 3 1 Python..................

1 1 1........................ 1 2........................ 1 3 JavaScript..................... 2 4................... 2 2 3 1 Python.................. JavaScript 0648016 1 1 1........................ 1 2........................ 1 3 JavaScript..................... 2 4................... 2 2 3 1 Python.................. 3 2......................... 4 3..........................

More information

CONTENTS 0 1 2 3 4 5 6 7 8 9 10 0 viii ix x http://www.vector.co.jp/vpack/filearea/win/writing/edit/hm/index.html http://hidemaru.xaxon.co.jp/lib/macro/index.html ftp://ftp.m17n.org/pub/mule/windows/ http://www.yatex.org/

More information

1" 3 3 4 5 9 15 16 17 18 20 22 22

1 3 3 4 5 9 15 16 17 18 20 22 22 - - 2014 8 TEL 03-4455-7453 FAX 03-6740-1754 Mail tamago-con@temona.co.jp 1" 3 3 4 5 9 15 16 17 18 20 22 22 2" 2 23 24 25 27 28 29 30 31 32 33 34 35 42 47 STEP1 3" 4" STEP2 URL URL 5" STEP3 2 STEP4 jpg

More information

文 書 構 造 とスタイル

文 書 構 造 とスタイル 第 4 回 の 内 容 文 書 構 造 とスタイル CSSの 基 礎 図 表 の 利 用 文 書 構 造 とスタイル 自 己 紹 介 のHTML 文 書 放 送 太 郎 の 自 己 紹 介

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション ホームページの 基 礎 IPアドレス インターネットへの 接 続 に 必 要 なネットワーク 上 のアドレス こ のアドレスは0から255までの4 組 に 数 字 で 表 されます ( 例 192.168.1.1) URL IPアドレスはホームページの 場 所 を 示 す 住 所 です たとえば 220.133.0.1に 接 続 しようとして ブラウザーのURLに 220.133.0.1と 入 れればいいのですが

More information

68 <td valign="top" class="c8"> 69 <p class="c13"><a name="マーク0"><span class="c9">⓪</span></a></p> 70 </td> 71 </tr> 72 <tr> 73 <td valign="top" class

68 <td valign=top class=c8> 69 <p class=c13><a name=マーク0><span class=c9>⓪</span></a></p> 70 </td> 71 </tr> 72 <tr> 73 <td valign=top class ページ 内 のリンクでページ 内 に 移 動 の html のページの 追 加 方 法 三 宅 節 雄 Html 文 書 を TeraPad で 開 きます 1 2

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ HTTP/2 HTTP/1.1 (1999 ) 2015 5 RFC7540! Google SPDY ( ) 1 TCP TCP TLS HTTP Upgrade HTTP 1 HPACK 1 / 24 3 : HTTP : HTML4 2 / 24 testform.html: POST testform2.html: GET iedemo: IE default.css: CSS proxy.pac:

More information

07_経営論集2010 小松先生.indd

07_経営論集2010 小松先生.indd 19 1 2009 105 123 Web Web Web Web World Wide Web WWW OS 1990 WWW Web HTML CSS JavaScript Web 1 WWW 2 Web Web 3 Web 4 HTML5 5 Web Web 3 1970 WWW HTML Web WWW WWW WWW WWW WWW 105 Web WWW 2 Web 1 1 NTT NTT

More information

Microsoft PowerPoint - A07回目②.pptx

Microsoft PowerPoint - A07回目②.pptx 1 コンピュータリテラシーII ( 樋 口 担 当 ) 7 回 目 2 11/14 本 日 の 予 定 2 Webページの 作 成 ( 続 き) I. JavaScript( 画 像 関 係 ) II. 課 題 3 I.JavaScript 1.JavaScriptを 使 用 するためのお 約 束 4 の 間 に

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション HTMLガイダンス 1 HTMLを 用 いたUI 設 定 2 色 々な 見 え 方 で 画 面 に 表 示 されるWebページ 全 て 文 字 /キャラクタで 表 現 されたデータの 集 まり HTML(Hyper Text Markup Language) パソコン 等 のインターネット 端 末 のブラウザソフトで 文 書 情 報 を 表 示 するときに 用 いられるプログラム 言 語 の 一 種

More information

1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2

1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2 XHTML DOM JavaScript 2 2008 7 1 1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2 2.1.2 HTML.........................

More information

ホームページ制作スターターズ

ホームページ制作スターターズ HTML タグ はじめての 方 ガイド Ver1.0 1 < 目 次 > 1ホームページ 構 造 2HTML タグ 3スタイルシート Copyright ナレッジコーディネーター All Rights Reserved. 2 第 1 章 ホームページ 構 造 Copyright ナレッジコーディネーター All Rights Reserved. 3 1HTMLとは ウェブ 上 の 文 書 を 記 述

More information

m_sotsuron

m_sotsuron iphone Web 0848066 1. 1 1 1 2 iphone 2 3 2 4 3 2. 3 1 3 2 iphone Web 6 3 HTML 10 4 CSS 12 5 iphone 14 6 15 7 16 8 ipad 18 3. 22 iphone Web Web 2 iphone Web iphone iphone Web iphone Web PC 1 2000 iphone

More information

3 1 5 1.1....................................... 6 1.2.......................................... 6 1.3..................................... 7 1.4.................................... 8 1.4.1.............................

More information

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3...................

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3................... 0448051 1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3.................... 4 4........................ 6 5...........................

More information

https://submitmail.jp/owners/login .... .. 500

More information

html_text

html_text HTML の 基 礎 2015.12.15 1. HTML ファイルの 構 成 1.1. HTML とは? Web ブラウザでホームページを 表 示 するためには,HTML(Hyper Text Markup Language)と 呼 ぶ 言 語 で 記 述 す る 必 要 が あ り ま す.HTML 形 式 のファイルは < と > で 囲 んだ 予 約 語 (タグ)を 含 むテキストファイルで,Web

More information

HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17

HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17 1 11 13 2 11 27 3 12 11 HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17 WWW(World Wide Web) HTML(HyperText Markup Language) HTML HTML HTML HTML - 1 - .1 HTML (V)(C) HTML - 2 - HTML HTML OS Windows 2.1 HTML

More information

Microsoft PowerPoint - 051105-2.ppt

Microsoft PowerPoint - 051105-2.ppt 1.Webアプリケーション 1-1 Web 1989Tim Berners-Lee 1993 1999iWindows98 2005: http://www.w3.org/people/berners-lee/ 1-2 ( ) 汎 用 機 オフコン データベース アプリケーション 言 語 (COBOLなど) 文 字 端 末 タイプライター 端 末 http://research.microsoft.com/~gbell/digital/timeline/dechistory.htm

More information

HTML文書の作成

HTML文書の作成 99 C HTML 1 1 2 HTML 1 3 2 4 HTML 2 4.1... 2 4.2... 3 4.3... 5 5 HTML 8 5.1... 8 5.2... 10 5.3... 12 6 HTML 13 7 13 1 HTML HTML [1] 2 HTML HTML Hyper-Text Markup Language World Wide Web (WWW)[2] HTML Hyper-Text

More information

クリック クリック リンクを 張 るためのタグ タグ <a href= リンク 先 のURL ファイル 名 > ~ </a> リンク 先 のURLやファイル 名 に 対 してリンクを 張 る 同 じフォルダ 内 のファイルにリンク <a href= hoge.html > フォルダ 内 のファイルに

クリック クリック リンクを 張 るためのタグ タグ <a href= リンク 先 のURL ファイル 名 > ~ </a> リンク 先 のURLやファイル 名 に 対 してリンクを 張 る 同 じフォルダ 内 のファイルにリンク <a href= hoge.html > フォルダ 内 のファイルに Webプログラミング プログラミング1 HTML+CSS (5) (2 章 ) 2013/5/22( 水 ) 演 習 室 のPCのハードディスクには 演 習 で 作 成 したデータは 保 管 できません 各 PCの ネットワーク 接 続 ショートカットからメディア 情 報 セ ンターのサーバーにアクセスしてください 演 習 名 使 用 するフォルダ 演 習 1 Z: Webプログラミング1 20130522

More information

橡ホームページの作り方

橡ホームページの作り方 1. 1.1. HTML Word HTML(Hyper Text Markup Language) html htm MS-WORD MS-WORD HTML HTML HTML (1.0) 1 1978 7 10 S 3

More information

方程式を解いてみよう! C++ から PHP + JavaScriptへ

方程式を解いてみよう! C++ から PHP + JavaScriptへ 方 程 式 を 解 いてみよう! C++ から PHP + HTML + JavaScriptへ 静 岡 理 工 科 大 学 総 合 情 報 学 部 コンピュータシステム 学 科 幸 谷 智 紀 (こうや とものり) http://na-inet.jp/ 今 日 のメニュー 1. コンピュータ 環 境 と 本 日 のゴールの 確 認 2. PHPプログラムを 実 行 してみる 3. HTMLで 自

More information

(Microsoft Word - \203v\203\215\203O\203\211\203~\203\223\203O1new.doc)

(Microsoft Word - \203v\203\215\203O\203\211\203~\203\223\203O1new.doc) 1.プログラム 言 語 1-1 プログラム 言 語 の 種 類 プログラム 言 語 は その 言 語 が 目 的 とする 処 理 別 に 基 本 的 な 記 述 概 念 が 存 在 する プログ ラム 言 語 の 種 類 ごとに 記 述 的 特 徴 や 生 産 性 が 異 なる Program 言 語 低 水 準 言 語 マシン 語 アセンブラ 高 水 準 言 語 手 続 き 型 言 語 FORTRAN

More information

練 習 問 題 1. dataフォルダのq1フォルダ 内 のindex.htmlでブラウザで 正 しく 表 示 できない 状 態 にあ る 画 像 を 正 常 に 表 示 できるようにソースを 修 正 しなさい 修 正 したindex.htmlファイルなどは デスクトップのwdフォルダ 内 にt1と

練 習 問 題 1. dataフォルダのq1フォルダ 内 のindex.htmlでブラウザで 正 しく 表 示 できない 状 態 にあ る 画 像 を 正 常 に 表 示 できるようにソースを 修 正 しなさい 修 正 したindex.htmlファイルなどは デスクトップのwdフォルダ 内 にt1と ウェブデザイン 技 能 検 定 3 級 実 技 練 習 問 題 本 練 習 問 題 の 著 作 権 は 当 協 会 に 帰 属 します 協 会 の 提 供 する 一 部 又 は 全 ての 練 習 問 題 を 無 断 で 複 写 転 載 営 利 利 用 することを 禁 止 します 内 容 解 答 その 他 一 切 のお 問 い 合 わせは 受 け 付 けておりません 本 練 習 問 題 と 実 際 の

More information

HTMLとメタデータ

HTMLとメタデータ HTMLとメタデータ http://www2.mmc.atomi.ac.jp/~artnavi1/lib rarysci/index.htmlを 例 にHTMLを 理 解 する IPアドレス ドメイン 名 http://www2.mmc.atomi.ac.jp httpとはhyper Text Transfer Protocol( 何 でもリンクできるテ キストの 通 信 手 順 : 説 明 JPNIC)

More information

HTML5 による Webサイト制作の基本 株式会社サイバーガーデン 益子 貴寛 2012年4月7日 土曜日 CSS Nite in OKAYAMA, Vol.2 with Microsoft アップル http://www.apple.com/jp/ ローソン http://www.lawson.co.jp/

More information

to-r

to-r to-r We re targeting a 1.0 release within the next few weeks. 1.0 IE6 jquery Mobile Sample

More information

InfoPros13_digest.key

InfoPros13_digest.key ! CSS sample2.css h1 h1 { color : blue ; } : ; { } : 14 : : p { font-size: 14pt; } p { font-style: italic; } p { text-decoration: underline; } p { font-size:

More information

untitled

untitled Excel Internet Explorer Excel Internet Explorer Excel Internet Explorer 1 Excel Excel 1.1 Excel Excel 2 1 1.1.1 Ctrl-C ( Sheet2) 2 OK 3 1.1.2 ( Sheet3) A1 =Sheet1!A1 Sheet1 A1 Sheet1 A1 Sheet3 A1 4 A1

More information

インターネットマガジン1998年11月号―INTERNET magazine No.46

インターネットマガジン1998年11月号―INTERNET magazine No.46 6.2% 4 50.5% 4 3 8.9% 25.3% 3 9.2% 290 INTERNET magazine 1998/11 5 @media H1 { color: #FF0000;

More information

0序文‐1章.indd

0序文‐1章.indd 本 書 に 記 載 されたURL 等 は 執 筆 時 点 でのものであり 予 告 なく 変 更 される 場 合 があります 本 書 の 使 用 ( 本 書 のとおりに 操 作 を 行 う 場 合 を 含 む)により 万 一 直 接 的 間 接 的 に 損 害 が 発 生 し ても 出 版 社 および 著 者 は 一 切 の 責 任 を 負 いかねますので あらかじめご 了 承 下 さい Microsoft

More information

p { color: yellow } div#hoge { color: green; } div.fuga { color: red; } div { color: orange; } div[id=hoge] { color: blue; } div#hoge

More information

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4..

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4.. WWW 17 2 10 1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4................................. 8 4.5...........................

More information

Microsoft PowerPoint - HTML1復習_1021.ppt

Microsoft PowerPoint - HTML1復習_1021.ppt HTML-Ⅱ(HTML 文 書 構 造 編 ) 3-1 HTML 基 本 構 造 html おいしいお 店 一 覧

More information

1 1 1............................ 1 2............................ 1 3 HTML5 CSS3................... 2 4........................ 2 2 3 1...............

1 1 1............................ 1 2............................ 1 3 HTML5 CSS3................... 2 4........................ 2 2 3 1............... 1 1 1............................ 1 2............................ 1 3 HTML5 CSS3................... 2 4........................ 2 2 3 1.............................. 3 2........................... 3 3......................

More information

Microsoft PowerPoint - InfPro_I9.pptx

Microsoft PowerPoint - InfPro_I9.pptx 今 日 の 学 習 内 容 エディタ(emacs)を 使 った 基 本 的 なHTML の 書 き 方 Webページの 公 開 HTMLの 基 礎 知 識 HTML(Hyper Text Markup Language)は Webページを 作 るための 必 要 な 記 述 言 語 HTMLにおける 指 定 の 内 容 は: 1. 文 章 (テキスト)に 対 する 役 割 2. 文 章 やイメージなどのページ

More information

すばやく小さくはじめられる HTML5 CSS3 JavaScriptで 青森のコンテンツをつくる 青森大学ソフトウェア情報学部 小久保 温(こくぼ あつし) alert('x=' + x); var styletable = { normal: "default", syncing: "syncing", failed:

More information

388-356697252-2.pdf

388-356697252-2.pdf 専修大学 ネットワーク情報学部 2012年度 特殊演習 (Webプログラミング) 新居雅行 / Masayuki Nii 2 HTML/CSS 2012 4 23 1 2-1 Web 2 2-1 80 SSL Apache WindowsIIS Internet Information Server HTTP HyperText Transfer Protocol HTML HTML 1 1 [ URI]

More information

eil2009062930_4.ppt

eil2009062930_4.ppt URL (Universal Resource Locator) WWW (World Wide Web) URL http://www.cs.kumamoto-u.ac.jp/ Web ftp://ftp.cc.kumamoto-u.ac.jp/ FTP (File Transfer Protocol) FTP World Wide Web (WWW) Web HTTP (HyperText Transfer

More information

<4D6963726F736F667420506F776572506F696E74202D2053454F82CC92B48AEE9162819591CE8DF4837D836A83858341838B2E707074>

<4D6963726F736F667420506F776572506F696E74202D2053454F82CC92B48AEE9162819591CE8DF4837D836A83858341838B2E707074> 2 3 4 5 6 http://jprs.co.jp/ 7 8 9 10 11 https://adwords.google.co.jp/select/keywordtoolexternal 12 13 14 http://www.pythagoras.bz/ Pythagoras 15 16 17 18 19 20

More information

Microsoft Word - class_specification_guide_v60.doc

Microsoft Word - class_specification_guide_v60.doc IM-FormatCreator クラス 指 定 手 順 書 Ver 6.0 IM-FormatCreator i 1 はじめに 1 1.1 目 的 1 2 プログラムの 作 成 2 2.1 ファンクション コンテナ(.JS)の 作 成 2 2.2 プレゼンテーションページ(.HTML)の 作 成 3 3 クラス 指 定 項 目 の 設 定 5 3.1 クラス 指 定 設 定 画 面 5 3.2 クラスパス

More information

Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheet

Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheet 2012 Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheets CSS2 CSS3 Web Web2.0 Web3.0 Web IT Web Homepage

More information

問 題 1 背 景 色 という 文 字 列 の 背 景 をちょっと 青 っぽい 色 (#6699FF)で 表 示 するHMTLを 作 成 せよ <HTML><HEAD><TITLE>test11</TITLE> <BODY BGCOLOR="#FFFFFF"> この 部 分 は<STRONG STY

問 題 1 背 景 色 という 文 字 列 の 背 景 をちょっと 青 っぽい 色 (#6699FF)で 表 示 するHMTLを 作 成 せよ <HTML><HEAD><TITLE>test11</TITLE> <BODY BGCOLOR=#FFFFFF> この 部 分 は<STRONG STY 9.スタイルシートと JavaScript を 組 み 合 わせてみよう スタイルシートとは スタイルシートとは タグのみでは 実 現 不 可 能 なデザインレイアウトやページ 構 造 を 実 現 する 命 令 郡 です 主 に 次 の3つの 書 式 があります (1)インライン タグ 内 部 により 詳 細 なデザインを 組 み 込 む 書 式 です 例 : この 部 分 は

More information

携帯電話でGoogle Mapsを使う

携帯電話でGoogle Mapsを使う PHPのファイルは UTF-8 BOMなしで 保 存 し www.cyaneum.orgのpublic_htmlに 置 く! テーマ 研 究 会 (04/28) Google Mapsを 使 う 政 策 情 報 学 部 渡 辺 恭 人 riho-m@cuc.ac.jp メーリングリスト riho-m-rg10@cuc.ac.jp 資 料 http://www.cuc.ac.jp/rg10/ 前 回

More information

HTML は 本 来 文 書 の 構 造 を 定 義 文 書 の 見 栄 えはスタイルシートで 記 述 HTML HyperText Markup Language 出 典 : フリー 百 科 事 典 ウィキペディア(Wikipedia) HyperText Markup Language(ハイパー

HTML は 本 来 文 書 の 構 造 を 定 義 文 書 の 見 栄 えはスタイルシートで 記 述 HTML HyperText Markup Language 出 典 : フリー 百 科 事 典 ウィキペディア(Wikipedia) HyperText Markup Language(ハイパー Web ページ 作 成 2011/ 5/31 Web ページとは IT 用 語 事 典 e-words より Web ページ web page 読 み 方 : ウェブページ WWW システムを 使 ってインターネット 上 で 公 開 されている 文 書 Web ブラウザに 一 度 に 表 示 されるデータのまとまりで テキストデータや HTML によるレイアウト 情 報 文 書 中 に 埋 め 込

More information

Microsoft PowerPoint - 08回目.pptx

Microsoft PowerPoint - 08回目.pptx 1 コンピュータリテラシーII ( 樋 口 担 当 ) 4 回 目 10/17 本 日 の 予 定 2 Webページの 作 成 ( 続 き) I.スタイルシート II.レイアウト III. 課 題 3 I.スタイルシート 1.スタイルシート 4 スタイルシート: 文 書 のスタイルの 設 定 が 書 かれているデータ CSS:スタイルシートの 書 き 方 ( 言 語 )の 一 つ Cascading

More information

/ 0/0/ : 実 結 果 HTMLファイルを 表 します 下 図 の 画 が 表 されます " 出 し"の 部 分 をクリックすると"コンテンツですよ "の 字 が 表 されます もう 度 " 出 し"をクリックすると"コンテンツですよ "の 字 が 非 表 になります 折 りたたみパネルの 基

/ 0/0/ : 実 結 果 HTMLファイルを 表 します 下 図 の 画 が 表 されます  出 しの 部 分 をクリックするとコンテンツですよ の 字 が 表 されます もう 度  出 しをクリックするとコンテンツですよ の 字 が 非 表 になります 折 りたたみパネルの 基 / 0/0/ : [CSS] 折 りたたみ 可 能 なパネルの 作 成 - CSSのみを 利 した 折 りたたみ 領 域 / アコー ディオンパネル このページのタグ:[CSS] [アコーディオンパネル] 新 着 記 事 覧 タグ 覧 トップページ ipentec.com CSSのみを 利 した 折 りたたみ 可 能 なパネル( 折 りたたみ 可 能 領 域 )を 実 現 するコードを 紹 介 します

More information

untitled

untitled 750 841 Webserver 1.0.0 ii General Copyright 2003 by WAGO Kontakttechnik GmbH All rights reserved. 136-0071 1-5-7 ND TEL 03-5627-2059 FAX 03-5627-2055 WAGO Kontakttechnik GmbH Hansastraße 27 D-32423 Minden

More information

Microsoft Word - SUGIJ2008_舟尾暢男.doc

Microsoft Word - SUGIJ2008_舟尾暢男.doc 1. 1 2. 3. 2 3 4 5 6 4. 7 3 8 9 4 5 10 5. 11 例 数 設 計 くん メニュー resizeto(450,300); var MyArray1 = new Array("2 標 本 t 検 定 "); var MyArray2 = new

More information

Microsoft Word - chap2.doc

Microsoft Word - chap2.doc 第 2 章 ホームページとHTML(タグ) ここでは HTML タグについて 今 まで 使 う 機 会 が 無 かった 学 生 を 対 象 に 説 明 する 既 に HTML タグを 使 ったことのある 学 生 にとっては 知 っている 話 になると 思 うので ざっと 目 を 通 すだけでよいだろう 初 めての 学 生 は 演 習 等 を 通 じて 使 い 慣 れて 欲 しい [1] HTML 通

More information

1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2..

1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2.. Servlet/JSP 1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2........................................

More information

Web 1990,HTTP, HTML, URL XML HTML XHTML XML Web XMLSOAPWSDL ( ) Web2.0 Web XML+WebAPI 2 http://www.xmlconsortium.org/ http://www.amazon.co.jp/ 3

Web 1990,HTTP, HTML, URL XML HTML XHTML XML Web XMLSOAPWSDL ( ) Web2.0 Web XML+WebAPI 2 http://www.xmlconsortium.org/ http://www.amazon.co.jp/ 3 XML Consortium XMLSOAWeb2.0 1 Web 1990,HTTP, HTML, URL XML HTML XHTML XML Web XMLSOAPWSDL ( ) Web2.0 Web XML+WebAPI 2 http://www.xmlconsortium.org/ http://www.amazon.co.jp/ 3 Web

More information

...... ......

More information

8 Web 8.1 Web Web 8.3 XHTML Web (1) (2) 2 8.1.1 Web Web Web Web 4 Web Web 2 5 PC Web Microsoft Internet Explorer Netscape Navigator Mozilla Firefox We

8 Web 8.1 Web Web 8.3 XHTML Web (1) (2) 2 8.1.1 Web Web Web Web 4 Web Web 2 5 PC Web Microsoft Internet Explorer Netscape Navigator Mozilla Firefox We 8 Web Web XHTML XHTML 1 Web Web 1 Web XHTML Web Web XHTML XHTML Extensible HyperText Markup Language( ) Web HTML XML HTML Web 2 XHTML XHTML HTML 4.01 XHTML XHTML 1.0 3 XHTML XHTML XHTML Web 1 2 Netscape

More information

HTTPの 規 格

HTTPの 規 格 第 5 回 の 内 容 HTTPの 規 格 HTTPメッセージの 基 本 HTTPの 規 格 HTTPの 規 格 Internet Engineering Task Force (IETF) Request for Comments (RFC) 年 バージョン RFC 1996 年 HTTP/1.0 RFC 1945 Hypertext Transfer Protocol -- HTTP/1.0 1997

More information

Microsoft Word - 1-html.doc

Microsoft Word - 1-html.doc Web ページ 作 成 の 基 礎 の 基 礎 内 容 : 1. HTML の 仕 組 み 2. HTMLの 文 法 2007-11-16 テキスト 原 案 作 成 原 田 隆 史 ( 慶 應 義 塾 大 学 ) 協 力 : 石 田 栄 美 ( 駿 河 台 大 学 ), 新 居 雅 行 (Apple Japan), 中 島 玲 子 1.Web ページの 仕 組 みと 作 成 1. Web ページを

More information

JavaScript の使い方

JavaScript の使い方 JavaScript Release10.5 JavaScript NXJ JavaScript JavaScript JavaScript 2 JavaScript JavaScript JavaScript NXJ JavaScript 1: JavaScript 2: JavaScript 3: JavaScript 4: 1 1: JavaScript JavaScript NXJ Static

More information

CSSの基礎

CSSの基礎 Webページの 見 た 目 を 定 義 する 視 覚 のための 言 語 CSS ファイル 視 覚 表 現 関 連 付 ける HTML ファイル 論 理 構 造 CSSの 基 礎 CSSの 記 述 方 法 基 本 的 な 形 セレクタ{ プロパティ1: 値 ; プロパティ2: 値 ; セレクタの 種 類 タイプセレクタ CSSの 記 述 HTML CSSを 適 用 する 箇 所 CSSを 記 述 する

More information

情報公開システム論2.pptx

情報公開システム論2.pptx 情 報 公 開 システム 論 (2) 神 戸 情 報 大 学 院 大 学 横 山 輝 明 電 子 文 書 としてのWebページ 2 ホームページ(1) ホームページ 自 由 に 作 成 安 価 世 界 中 に 公 開 多 彩 な 表 現 力 双 方 向 性 - 島 根 県 立 大 学 - 島 根 県 立 大 学 短 期 大 学 部 h,p://www.u- shimane.ac.jp/ 3 ホームページ(2)

More information

Web Web Web 2

Web Web Web 2 PFU syouda.kimiko@pfu.fujitsu.com Web Web Web Web Web Web Web 2 Web Web Web Web Ajax Web Web Request.Response Ajax Ajax(Asynchronous JavaScript + XML) Google Maps Google Suggest Ajax Up Ajax 4 My Travel

More information

Web±ÜÍ÷¤Î³Ú¤·¤µ¤ò¹â¤á¤ëWeb¥Ú¡¼¥¸²ÄÄ°²½¥·¥¹¥Æ¥à

Web±ÜÍ÷¤Î³Ú¤·¤µ¤ò¹â¤á¤ëWeb¥Ú¡¼¥¸²ÄÄ°²½¥·¥¹¥Æ¥à Web Web 2 3 1 PC, Web, Web. Web,., Web., Web HTML, HTML., Web, Web.,,., Web, Web., Web, Web., Web, Web. 2 1 6 1.1.................................................. 6 1.2.................................................

More information

ホームページの作成

ホームページの作成 HTML5,CSS 資 料 HTML5 HTML の 文 法 HTML(Hyper Text Markup Language)は, 文 章 の 部 分 を Tag(タグ)と 呼 ばれ る 命 令 で 挟 んでいく タグは ... 開 始 終 了 のように 開 始 タグと 終 了 タグ 一 対 のペアになっている. タグは, 挟 まれた 部 分 がどのような 情 報 であるかを

More information

経営論集2011_07_小松先生.indd

経営論集2011_07_小松先生.indd 20 1 2010 103 125 HTML+CSS HTML CSS CMS Web CMS CMS CMS CMS DreamWeaver Web Web CMS Web Web CSS Web Eclipse HTML CSS Web Web HTML CSS Web HTML CSS Web HTML CSS Web 1 Web Web HTML Web 103 HTML+CSS Web HTML

More information

1/2

1/2 札 幌 学 院 大 学 社 会 情 報 学 部 AO 入 試 課 題 用 テキスト (2) 1 札 幌 学 院 大 学 社 会 情 報 学 部 AO 入 試 課 題 用 テキスト HTMLの 基 礎 知 識 (2) 1 画 像 の 表 示 HPに 画 像 を 表 示 させてみる まず HTML 文 書 と 同 じフォルダ 内 にJPEGファイル( 拡 張 子.jpg )を1 個 準 備 する ( 画

More information

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2. 1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.......................... 4 3......................

More information

インターネットマガジン1999年2月号―INTERNET magazine No.49

インターネットマガジン1999年2月号―INTERNET magazine No.49 A MagnaviIp990Htmltips +CD-ROM 3.0 3.0 A N S W E R A N S W E R 74 INTERNET magazine 999/ click here! 3

More information

祝 1.0 を 2010 年 4 月 にリリース

祝 1.0 を 2010 年 4 月 にリリース - IronRuby の 活 用 - 祝 1.0 を 2010 年 4 月 にリリース hello Active Script Ruby @doc = @window.document おもしろい def click(btn) @doc.all(btn).value = btn + " is

More information

WebGIS WebGIS(Web Geographic Information System) Web WebGIS Web WebGIS API(Application Program Interface) Web Google GoogleMaps API WebGISJSGI i

WebGIS WebGIS(Web Geographic Information System) Web WebGIS Web WebGIS API(Application Program Interface) Web Google GoogleMaps API WebGISJSGI i 18 WebGIS A Sharing of Geographic Information for WebGIS 1095303 2007 3 9 WebGIS WebGIS(Web Geographic Information System) Web WebGIS Web WebGIS API(Application Program Interface) Web Google GoogleMaps

More information

第7章 Webページによる情報の発信

第7章 Webページによる情報の発信 筑 波 大 学 情 報 処 理 実 習 Webページによる 情 報 の 発 信 情 報 処 理 実 習 用 手 引 き P.197~226 World Wide Web (WWW) インターネット 上 のハイパーテキストシステム 1989 年 にCERNの 物 理 学 者 Tim Berners-Leeが 発 明 WWWはインターネットとも 呼 ばれるが, 両 者 は 同 義 語 ではない WebページのアドレスURL

More information

目 次 本 書 について... 3 はじめに... 5 第 1 章 コンテンツ 制 作 方 法... 6 1-1 テンプレートの 使 用... 6 1-2 キャラクタエンコーディング... 7 1-3 ヘッダーの 書 き 方... 7 1-4 画 像 について... 8 1-5 CSS の 書 き

目 次 本 書 について... 3 はじめに... 5 第 1 章 コンテンツ 制 作 方 法... 6 1-1 テンプレートの 使 用... 6 1-2 キャラクタエンコーディング... 7 1-3 ヘッダーの 書 き 方... 7 1-4 画 像 について... 8 1-5 CSS の 書 き Ver.2 ユーザマニュアル スタートガイド 第 2 版 最 終 更 新 日 2011/7/12 1 目 次 本 書 について... 3 はじめに... 5 第 1 章 コンテンツ 制 作 方 法... 6 1-1 テンプレートの 使 用... 6 1-2 キャラクタエンコーディング... 7 1-3 ヘッダーの 書 き 方... 7 1-4 画 像 について... 8 1-5 CSS の 書 き

More information

jQueryのはじめ方

jQueryのはじめ方 sato-shi 高 田 馬 場 で 働 いています jqueryを 分 かった 気 になる About jquery べた 書 き から お 手 軽 な 書 き 方 へ ブラウザ バージョン 表 示 CSS 操 作 イベント 処 理 エフェクト 非 同 期 通 信 (Ajax) クロスドメイン 通 信 (JSONP) アニメーション プラグイン 紹 介 (ズーム 画 像 表 示 ツールチップ) jqquery

More information

130 11 A B C A B C Ctrl (S) 5 A B C 11.2: 11.1.2 2 11.2 (F) (A) ( OK ) 3 (E) ( ) (E) 11.1.3 3

130 11 A B C A B C Ctrl (S) 5 A B C 11.2: 11.1.2 2 11.2 (F) (A) ( OK ) 3 (E) ( ) (E) 11.1.3 3 129 11 Web IT ( 11.1) 1990 2004 2006 JIS 1 Windows 2 Web Web 11.1: 11.1 11.1.1 1 Ctrl ( ) 11.2 (U) (A) ( OK ) (S) 1 (JIS X 8341-2) (JIS X 8341-3) FAX (JIS X 8341-4) 8341 JIS JIS X8341 http://www.jisc.go.jp/

More information

~モバイルを知る~ 日常生活とモバイルコンピューティング

~モバイルを知る~ 日常生活とモバイルコンピューティング Webプログラミングの 基 礎 PHPの 基 礎 (8) (2011/07/06) 政 策 情 報 学 部 渡 辺 恭 人 riho-m@cuc.ac.jp メーリングリスト:riho-m-rg11@cuc.ac.jp: 資 料 ページ: http://www.cuc.ac.jp/~riho-m/rg11/ 前 回 の 課 題 POSTでデータが 送 信 されているかを 確 認 送 信 されていれば

More information

1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6.....................

1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6..................... web 0448039 1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6...................... 3 7 HTML CSS.................... 3 8....................

More information

2008 e-learning T050050

2008 e-learning T050050 e-learning T050050 e-learning B NintendoDS e-learning html 1 e-learning Java Applet html 2 2008 e-learning T050050 1 1 1.1.................................. 1 1.2............................ 1 2 2 2.1..............................

More information

Microsoft PowerPoint - hp2.ppt [互換モード]

Microsoft PowerPoint - hp2.ppt [互換モード] 技 術 センター HP 講 習 会 ( 第 2 回 ) 広 島 大 学 技 術 センター HP 運 用 WG 本 日 の 講 習 会 の 流 れ FTPソフトの 使 い 方 ファイルをサーバにアップロードする 方 法 前 回 ( 第 1 回 )の 復 習 とその 応 用 フォルダ(ディレクトリ)とリンクの 関 係 リンクの 仕 組 み: 絶 対 パスと 相 対 パス パスワードによるアクセス 制 限

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 3 Webデザイナーに求められる知識 優秀な HTML, CSS, 画像編集, JavaScript, jquery, XML, 色 彩理論, LL, データベース, SEO, SMO, EFO, コピーラ イティング, テキストライティング, イラストレー ション, Flash, ディレクション能力, プロジェクトマ ネジメント, Logo作成, Typography, サーバ管理, PHP, Perl,

More information

目 次 本 書 について... 3 はじめに... 5 第 1 章 コンテンツ 制 作 方 法... 6 1-1 テンプレートの 使 用... 6 1-2 キャラクタエンコーディング... 7 1-3 ヘッダの 書 き 方... 7 1-4 画 像 について... 8 1-5 CSS の 書 き 方

目 次 本 書 について... 3 はじめに... 5 第 1 章 コンテンツ 制 作 方 法... 6 1-1 テンプレートの 使 用... 6 1-2 キャラクタエンコーディング... 7 1-3 ヘッダの 書 き 方... 7 1-4 画 像 について... 8 1-5 CSS の 書 き 方 Ver.2 ユーザマニュアル スタートガイド 第 5 版 最 終 更 新 日 2012/7/11 1 目 次 本 書 について... 3 はじめに... 5 第 1 章 コンテンツ 制 作 方 法... 6 1-1 テンプレートの 使 用... 6 1-2 キャラクタエンコーディング... 7 1-3 ヘッダの 書 き 方... 7 1-4 画 像 について... 8 1-5 CSS の 書 き 方...

More information

~モバイルを知る~ 日常生活とモバイルコンピューティング

~モバイルを知る~ 日常生活とモバイルコンピューティング Webプログラミングの 基 礎 PHPの 基 礎 (6) ~POST (2011/06/22) 政 策 情 報 学 部 渡 辺 恭 人 riho-m@cuc.ac.jp メーリングリスト:riho-m-rg11@cuc.ac.jp: 資 料 ページ: http://www.cuc.ac.jp/~riho-m/rg11/ 入 力 された 文 字 を 受 け 取 りPOSTで 送 信 する 部 分 (post.htm)

More information

スライド 1

スライド 1 第 7 講 観 光 情 報 論 2008 年 6 月 4 日 Style Sheet (CSS) 宮 国 薫 子 1 スタイルシート (CSS) CSSとは(Cascading Style Sheets) 本 来 ホームページにデザインを 加 える 機 能 の すべて 教 科 書 で 言 う スタイルシート とはCSSのことを 指 す CSSを 使 うと Page 106 にあるようにホーム ページの

More information

ホームページの仕組み

ホームページの仕組み 見 やすいホームページを 作 ろう! 跡 見 学 園 女 子 大 学 公 開 講 座 文 学 部 准 教 授 福 田 博 同 平 成 23 年 5 月 7 日 14 日 目 次 5 月 7 日 1. ショートカットキー 2. HTMLの 仕 組 み 3. XHTMLとCSS 4. W3C 標 準 5. 見 本 に 書 き 込 む 6. 単 語 登 録 5 月 14 日 1. ブログを 試 そう 2.

More information