Changeset 23367

Show
Ignore:
Timestamp:
11/12/08 17:58:36 (5 years ago)
Author:
mattn
Message:

jQuery入れてみる

Location:
lang/perl/MENTA/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/MENTA/trunk/app/tmpl/index.html

    r23361 r23367  
    22<title><%= config()->{application}->{title} %></title> 
    33<link rel="stylesheet" type="text/css" href="/static/style-sites.css"> 
    4  
     4<script type="text/javascript" src="/static/jquery-latest.js"></script> 
     5<script type="text/javascript"> 
     6$(function() { 
     7    $('h1').css({background : 'orange'}); 
     8}); 
     9</script> 
    510<h1><%= config()->{application}->{title} %></h1> 
    611<p><%= localtime time %></p> 
  • lang/perl/MENTA/trunk/out/static/style-sites.css

    r23361 r23367  
    1 body { 
    2     font-family: monospace; 
    3 } 
     1body { font-family: monospace; } 
     2h1 { padding: 0.5em; }