Posted By: jamie | Jun 12th @ 12:57 PM
page 1 of 1
Comments: 24 | Views: 718

This is more of a demo of using the pc as a home hub than the pc itself.
I tried a video this morning, but it was over a gig, and blurry.

This shows stuff you need at a fingertouch - like ... radio, maps, calendar, order pizza, weather, fireplace etc
Joby is going to love the kids page

edit::: would be great to be able to type [youtubevideo widescreen....
- click the video twice to open at youtube (to see bigger or fullscreen)

the UI is still here:  www.jgrant.com/touch/index.html

*it is specifically made for full screen 1920 x 1200

** ill make it available as a zip if anyone wants (to cutomize the links to yourself.  Ideally -  someone would want to help make this configurable by log in / customize links..

last - anyone got a link to a good 3d flash pinball swf? Wink

Koogle
Koogle
I'm a Terminator - Astalavista, Vis7a!

Expressionless

PaoloM
PaoloM
Hypermediocrity

It's good Jamie.

I'm actually working (on my spare time) on something similar, only the plan is to use voice instead of touch for the main UI.

PaoloM
PaoloM
Hypermediocrity

Yeah, youtube is now borked.

figuerres
figuerres
???

tonight i just might send you a bit of html -- we can make that button stack much nicer with some CSS....

and less stuff in the html file at the same time.

SlackmasterK
SlackmasterK
I write my OWN blogging engines

Dammit youtube, embeds without a fullscreen link are pretty much useless.  Except that they link to the video which has a fullscreen button.  Sigh.

SlackmasterK
SlackmasterK
I write my OWN blogging engines

The HQ version is pretty decent.  My point stands on the embeds.

Koogle
Koogle
I'm a Terminator - Astalavista, Vis7a!

it blew my mind jamie.....nah it was the music ... was making me feel sleepy but it was so bad.. I just couldn't nod off ..

looks like it should belongs on the desktop really, oh thats bin done.

your photos page only goes to fakebook ? ..might want to look for some other css styles to use with stylish(ff addon) make some of those other sites fit in better with your all black ui.  If you add flickr, I could donate you the best black flickr css, maybe.

I'm now thinking of something similar too, only I plan have it read my mind, while my eye movements provide gesturing control...and it will look like perfection with all the customization and control a user could have want. yes

figuerres
figuerres
???

Jamie:

ok forget the fact that i used the c* word and think about this, we can make the button stack's html markup go from the current size down to a fraction of the size.  Slim down by about 75% in size.

same look, same function, less stuff to have to edit. easier to read when you do have to edit it.

anything wrong with that ? Smiley

figuerres
figuerres
???

Jamie: Can you do a bit of graphic for me to work this out.

make 2 "button" images the normal and hover image w/o any text or icons.

then a set of the icons, png with transparent backgrounds.

I generaly use just a button and text but for this i will see how overlaying the icon works or does not work.

idealy we will only need to load the two images for the body of all the buttons.

then just the icon will be per-button.

the html for each button should then only have an img tag and an a-href tag

the css will do the swap of the background image w/o code by using the a:link a:hover and a:visited css style/behaviors

that removes all that javascript in the button stck for most of the buttons, the back button still gets it's script to do it's thing.

the rest i am leaving alone as i just want to "fix" one thing for you at this time Smiley

later we might think about doing the "Clock" with a bit of Silverlight and then go from there....

 

Dodo
Dodo
I'm your creativity creator™ :)

Don't do the clock in Silverlight, it's very simple JS... you don't need to load a browser plugin for that (which the user might have to download) unless you want to enhance the functionality to an extend where it would make sense. If you're doing anything Silverlight, do the whole thing in it, some sites don't like to be framed, you know?

@Jamie: Every graphics program has known of PNGs, and designers making skins have heard of the alpha channel advantage for years...

CannotResolveSymbol
CannotResolveSymbol
{insert caption here}

You can't have JPEGs with transparent backgrounds...  theming will be easier if you can separate the button backgrounds from the icons, and you can only do that if you use transparent PNGs (or GIFs, but you don't want to do that).

Dodo
Dodo
I'm your creativity creator™ :)

jamie said:
edit: no - pngs are garbage.. not fully supported yet
Do you live in the 90s? PNGs (without alpha channel) are supported since the times of IE5... when did that come out? 1998. It's 2009 now, every current browser supports them (with alpha channel).

Hey, I even have a 16bit (Windows 3.11) image editing program on an old CD around here that supports PNGs (without alpha channel though).

figuerres
figuerres
???

well it seems that the idea is to have a "rich" home-page ui that might not even come from a web server really.

so one time you download and cache that,m not a big hit. later you might do more with silverlight to do other animations and stuff.

yes the js clock is not huge... just an easy target to swap out ...

Dodo
Dodo
I'm your creativity creator™ :)

A pretty simple one, if you ask me. Just for you to copy and paste.

Download JS File

Put this in your HTML file:

<script defer="defer" type="text/javascript" src="/scripts/ie6pngfix.js"></script>

Edit the location at need, or place the JS file in the scripts folder in the root of your domain. Done.

figuerres
figuerres
???

html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link href="./Untitled_1.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="leftmenu">
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
</body>
</html>

thats the basic menu - stack of buttons.

css:  transforms the list into a menu:
#leftmenu ul {
 padding-top: 0px;
 padding-right: 0px;
 padding-bottom: 0px;
 padding-left: 0px;
 margin: 0px;
 list-style-type: none;
}
#leftmenu ul li {
 background-image: url('12.jpg');
 line-height:86px;
 height: 86px;
 width: 288px;
 margin: 0px;
 padding: 0px;
}
#leftmenu ul li a:link {
 color: white;
 padding-left: 100px;
 font-size: 30px;
 line-height: 86px;
 text-decoration: none;
 display: block;
 margin: 0px;
 font-family: Arial, Helvetica, sans-serif;
 font-weight: bold;
}
#leftmenu ul li a:visited {
 color: white;
 font-family: Arial, Helvetica, sans-serif;
 font-weight: bold;
 padding-left: 100px;
 font-size: 30px;
 line-height:86px;
 text-decoration: none;
 display: block;
}
#leftmenu ul li a:hover {
 color: white;
 font-family: Arial, Helvetica, sans-serif;
 font-weight: bold;
 padding-left: 100px;
 font-size: 30px;
 line-height:86px;
 text-decoration: none;
 background-image: url('12x.jpg');
 display: block;
}
#leftmenu ul li a:active {
 color: white;
 font-family: Arial, Helvetica, sans-serif;
 font-weight: bold;
 padding-left: 100px;
 font-size: 30px;
 line-height:86px;
 text-decoration: none;
 display: block;
}


 with the current graphic having text it does not look so good but this should give you the idea.

 

page 1 of 1
Comments: 24 | Views: 718
Microsoft Communities