Monday, November 26, 2007 9:37 AM
by
alogan
Pimp'd my blog with some transparent silverlight carousel goodness via Popfly for the Quick Apps
Just added some serious bling to my blog - giddy up!
I wanted to show screenshots of the Windows Live Quick Apps but I didn't want boring static shots; and I remembered Doug Handler did something really cool on the Express website.
So how did I add the bling? (a transparent image carousel without writing any Silverlight or .NET code - just some CSS hackery).
- upload all the photos you want into a Windows Live Spaces album
- go to popfly and use the RSS block and the Carousel block and use the RSS Feed from spaces (just add feed.rss to the album path);
- share the mashup (mash out ) and get the iframe embed
- in Community Server add it as a RAW header
<div style="position: absolute; top: 0px; left: 0px; height: 235px; width: 1024px;">
<iframe style='width:100%; height:100%;' src='http://www.popfly.ms/users/alogan/Quick%20Apps%20Carousel.small' frameborder='no'></iframe>
</div>
just add "allowtransparency" and background transparent:
<div style="position: absolute; top: 0px; left: 0px; height: 235px; width: 1024px; background: transparent;">
<iframe style='width:100%; height:100%;' src='http://www.popfly.ms/users/alogan/Quick%20Apps%20Carousel.small' frameborder='no' allowtransparency=true></iframe>
</div>