2012-03-21 55 views

回答

0

是的,有一些簡單的例子在這裏:

Developing Windows Phone 7 HTML5 apps with PhoneGap

請嘗試以下方法讓你開始:

body, input, div, span 
{ 
    font-size: 20px; 
    color: white; 
    font-family: Segoe WP, Sans-Serif; 
} 

body 
{ 
    background:black; 
    margin:0; 
    padding:0; 
} 

h2 
{ 
    font-weight: normal; 
    font-size: 32px; /* PhoneFontSizeLarge */ 
} 

h1 
{ 
    font-weight: normal; 
    font-size: 42.667px; /* PhoneFontSizeExtraLarge */ 
} 

button 
{ 
    background: black; 
    color: white; 
    border: 3px solid white; /* PhoneBorderThickness */ 
    padding: 6px 10px; 
    font-size: 25.333px; /* PhoneFontSizeMediumLarge */ 
    position: relative; 
    top: -4px; 
} 

button:active 
{ 
    background: white; 
    color: black; 
} 

button:disabled 
{ 
    opacity: 0.7; 
} 

input[type="text"] 
{ 
    font-size: 25.333px; /* PhoneFontSizeMediumLarge */ 
    width: 200px; 
    padding: 6px; 
    height: 31px; 
    border: 3px solid white; 
    color: black; 
} 

input[type="checkbox"] 
{ 
    width: 32px; 
    height: 32px; 
    vertical-align: middle; 
}