|
|
#1 |
|
Bronze Member
![]() Join Date: Sep 2008
Location: San Diego, California
Posts: 71
|
Hey everyone,
I'm working on a new project for a photographer. We want to develop a site that is "fluid." What that I mean that when users re-size a screen, the image or content does too. We do not want to use Flash. Here's a non-Flash example: http://www.thesixtyone.com Here's one Flash example just for functionality and ideas: http://nickonken.com As far as I know, this can be achieved with JavaScript or JQuery like with the first example. Have you done a site like this? What would you use to do it? Please don't bother telling me why you would not do it. We will do it; we want opinions that will make us reach our goal! Thank you!
__________________
kRemtronicz California & San Diego Website Design, San Diego SEO, & Graphic Design Company |
|
|
|
|
|
#2 |
|
New Member
![]() |
Whenever I have to do anything like this I try to specify everything in percentage of the screen instead of pixels, However with js you could determine the pages width/height and from that specify different images to load that are different sizes, render different sized content etc.
__________________
Custom coding(desktop/web), Infrastructure, Routing, Server setups, Remote admin and more: DeatosLabs |
|
|
|
|
|
#3 |
|
Diamond Member
![]() Join Date: Feb 2011
Location: Newcastle, Australia
Posts: 1,135
|
Deatos is right, u should use %. Image resizing can be done with css, although u might want a script for older browsers. And ie will need its own rules as well as it resizes differently. Definately best to avoid flash...
__________________
if (headhurts == "possibly") { alert ("keep going!"); } else if (headhurts == "yes") { alert ("go to sleep"); } else if (headhurts == "damn !@#$ mofo scripts...") { alert ("give up and have a beer!"); } else { alert ("watch TV"); } |
|
|
|
|
|
#4 | |
|
New Member
![]() |
Quote:
function resizeObj(xx,yy,elid) { var swfObj = document.getElementById(elid); swfObj.height = yy; swfObj.width = xx; }
__________________
Custom coding(desktop/web), Infrastructure, Routing, Server setups, Remote admin and more: DeatosLabs |
|
|
|
|
|
|
#5 |
|
Diamond Member
![]() Join Date: Feb 2011
Location: Newcastle, Australia
Posts: 1,135
|
Yeah but flash sucks on so many levels that I wont even go in to. Show me one flash page (that isnt just a massive animation) that I cant duplicate in half the time, with twice the accessibility, and only a quarter of the load time...
__________________
if (headhurts == "possibly") { alert ("keep going!"); } else if (headhurts == "yes") { alert ("go to sleep"); } else if (headhurts == "damn !@#$ mofo scripts...") { alert ("give up and have a beer!"); } else { alert ("watch TV"); } |
|
|
|
|
|
#6 |
|
Platinum Member
![]() |
I would use media queries, and scale the images using CSS, as Phreadee suggested. Nick La from web designer wall has a great article on media queries.
|
|
|
|
|
|
#7 | |
|
Super Moderator
![]() Join Date: Oct 2008
Location: Arizona, USA
Posts: 1,053
|
Quote:
__________________
John Darling Graphic / Web Designer SmarterTools Inc. (877) 357-6278 www.smartertools.com |
|
|
|
|
![]() |
| Tags |
| design, fluid, idea, web |
| Thread Tools | |
| Display Modes | |
|
|