Bloggers' Paradise Forum Index Bloggers' Paradise
The forum for personal bloggers to get help and share knowledge on all aspects of blogging.
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   Join! (free) Join! (free)
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Announcements
Bloggers' Paradise Closing Down
July's Theme is Independence
June's Theme is Favourite Recipe
May's Theme is Childhood Sweets
April's theme is Three Wishes
Blog-a-long for March - My Best Holiday Ever!
Congratulations to Ruthjen!
PLEASE UPDATE ANY LINKS YOU HAVE TO THE OLD FORUM!
The idea of the Blogalong
Sticky Articles
The Button
Important Links
Blog-a-long
Welcome Pack
Latest Posts
Sweet HTML Morsels Progress Bars
Adding images to blogger
Bloggers' Paradise Closing Down
adding a new item to sidebar
got a bit of a problem...
Hi from Cinders
Displaying a button link
July's Theme is Independence
June's Theme is Favourite Recipe
can't find the right bit in my template...

Sweet HTML Morsels Progress Bars
Page 1, 2, 3  Next
 
Post new topic   Reply to topic    Bloggers' Paradise Forum Index -> Code Exchange
View previous topic :: View next topic  
Author Message
jacquie
Site Admin


Joined: 31 Jan 2007
Posts: 102


Location: Salt Lake City, Utah, USA

PostPosted: Sun Feb 04, 2007 12:32 am    Post subject: Sweet HTML Morsels Progress Bars Reply with quote

My Progress Bars came from
http://www.unlikelywords.com/html-morsels

but is not currently available. You are perfectly allowed to copy it from here though. It has two parts. This first part must be installed above the second part and if you can get to the <head> tag of your template it can go in there, otherwise somewhere in the <body> tags will be fine.

Code:
<script language="javascript">
  // drawPercentBar()
  // Written by Matthew Harvey (matt AT unlikelywords DOT com)
  // (http://www.unlikelywords.com/html-morsels/)
  // Distributed under the Creative Commons
  // "Attribution-NonCommercial-ShareAlike 2.0" License
  // (http://creativecommons.org/licenses/by-nc-sa/2.0/)
  function drawPercentBar(width, percent, color, background)
  {
    var pixels = width * (percent / 100);
    if (!background) { background = "none"; }
 
    document.write('<div style="position: relative; line-height: 1em; background-color: '
                   + background + '; border: 1px solid black; width: '
                   + width + 'px">');
    document.write('<div style="height: 1.5em; width: ' + pixels + 'px; background-color: '
                   + color + ';"></div>');
    document.write('<div style="position: absolute; text-align: center; padding-top: .25em; width: '
                   + width + 'px; top: 0; left: 0">' + percent + '%</div>');
    document.write('</div>');
  }
</script>


The second part is repeated for each progress bar you want to draw and you set the values in parentheses to reflect your progress.

Code:
<script language="javascript">drawPercentBar(100, 100, 'teal', 'white'); </script>


The first number is the width of the bar in pixels - experiment with this to get it right for your sidebar.

The second is the percent progress you want to show,

The third is the color of the progress bar and the fourth is the color of the background.

I don't know where the little garment progress bars come from - I hope someone else can enlighten us Smile



_________________
Jacquie

Jacquie's Journal
Crafty Threads 'n' Yarns
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Renocat



Joined: 05 Mar 2007
Posts: 5



PostPosted: Mon Mar 05, 2007 1:02 am    Post subject: Reply with quote

I have the code for the garmet progress bars. I just can't get it to work in the new blogger.
Back to top
View user's profile Send private message
jacquie
Site Admin


Joined: 31 Jan 2007
Posts: 102


Location: Salt Lake City, Utah, USA

PostPosted: Mon Mar 05, 2007 2:40 am    Post subject: Reply with quote

Welcome to Bloggers' Paradise!

Try copying the code from the above post. It has been edited to work with the new Blogger which is much stricter with HTML and Javascript.

If that doesn't work then please feel free to ask again.
_________________
Jacquie

Jacquie's Journal
Crafty Threads 'n' Yarns
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Renocat



Joined: 05 Mar 2007
Posts: 5



PostPosted: Tue Mar 06, 2007 1:09 am    Post subject: Reply with quote

Hi Jacquie,

I got the progress bars you posted working. I also got the ones from Terriknits working but prefered the clean lines of the ones above.

I had a different code for the garment progress bars. You could specify many different types of garments and it would show a picture for each, ie, sweater, scarf, bag, blanket, cardigan, etc. I have tried many times to get that working but have given up. If anyone wants to give it a try, I would be happy to post the code.
Back to top
View user's profile Send private message
jacquie
Site Admin


Joined: 31 Jan 2007
Posts: 102


Location: Salt Lake City, Utah, USA

PostPosted: Tue Mar 06, 2007 2:13 pm    Post subject: Reply with quote

Please do and we'll see if we can work out how to get it going - as long as it's free for you to post of course.

Would you be able to post where you got it from originally?

Glad you got the sweet morsel ones working!
_________________
Jacquie

Jacquie's Journal
Crafty Threads 'n' Yarns
Back to top
View user's profile Send private message Send e-mail Visit poster's website
dee



Joined: 26 Mar 2007
Posts: 3


Location: uk

PostPosted: Mon Mar 26, 2007 1:04 pm    Post subject: Reply with quote

Hi. I have the code for the knit tracker and cant get it to work on my blog without linking back to the persons website, when i try to link it to my images on photo bucket i just get coloured squares. iv almost given up now!
heres the link to the website

http://www.swatchnot.hender-son-s.com/finalyarnometer.html

They are free to use as long as you dont link back to the site!!
_________________
http://dee.typepad.com
Back to top
View user's profile Send private message Visit poster's website
jacquie
Site Admin


Joined: 31 Jan 2007
Posts: 102


Location: Salt Lake City, Utah, USA

PostPosted: Mon Mar 26, 2007 2:04 pm    Post subject: Reply with quote

I will try them out on my tester blog and get back to you soon.
_________________
Jacquie

Jacquie's Journal
Crafty Threads 'n' Yarns
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Renocat



Joined: 05 Mar 2007
Posts: 5



PostPosted: Tue Mar 27, 2007 12:47 am    Post subject: Reply with quote

I still cannot get the progress tracker with the garments to work in the new blogger. I keep getting an error that says my XML is not well formed.
Back to top
View user's profile Send private message
jacquie
Site Admin


Joined: 31 Jan 2007
Posts: 102


Location: Salt Lake City, Utah, USA

PostPosted: Tue Mar 27, 2007 2:39 am    Post subject: Reply with quote

I have been working on it all day and have it working with IE but Im not happy with it in FireFox.

I hope the owner of the code doesn't mind me messing with it, but she has withdrawn support and it does shame to let it go.
_________________
Jacquie

Jacquie's Journal
Crafty Threads 'n' Yarns
Back to top
View user's profile Send private message Send e-mail Visit poster's website
jacquie
Site Admin


Joined: 31 Jan 2007
Posts: 102


Location: Salt Lake City, Utah, USA

PostPosted: Tue Mar 27, 2007 3:42 am    Post subject: Reply with quote

Please try this out:
    From http://www.swatchnot.hender-son-s.com/finalyarnometer.html save the pictures you want to use and load them up to your picture host. Make sure they are all in the same album so that they all have the same url apart from the last part. The last part should be "sm_xxx_clear.gif" where xxx is sheep, sweater, scarf4 etc. This will be used later to identify which picture you want so it is very important.
    In Blogger go to your Template - Page Elements page and click on the Add a Page Element box and then choose the HTML/JavaScript option.
    Copy the following code into the text box on the next dialog box.
    Code:
        <div style="position:relative; left:0px; top:0px;">
                            
                         
                            <script language="Javascript" type="text/javascript">
       var projects = new Array();
       
       // set up projects like this: NAME, percent done, type
       // type can be: sweater, tank, hat, bag, sock, scarf
       
       projects[projects.length] = "SPINNING, 100, sheep";
       projects[projects.length] = "Kureyon Scarf, 40, scarf4";

       
       
       // set up the colors for works in progress (less than 100 percent) and finished objects (100 percent)
       // these can be hex codes, or color names (Green, Red, Blue, etc).
       
       var wipColor = "#33cc33";
       var foColor = "#9966ff";
       
       
       // edit this to get the fonts to display differently if you want
       
       var fontStyle="font-family:arial,helvetica,sans-serif; font-size:12px; color:#888888;";

       // set up height of standard project: adjust this if projects are overlapping
       var projHeight = 90;
       
       // initial vertical position from top of container. Adjust if you want.
       var position="0";
       
       // WARNING: Don't edit after this line unless you're a javascript queen!
       var numProjects = projects.length;
       var genericStyle = 'position:relative; left:-1px; width:121px; height:50px;';
       var otherStyle = 'position:absolute; left:0px; width:120px; height:50px;';
       
       document.write('<table border="0" style="position:relative; left:0px; top:0px;" width="200">');
       for(var i=1; i<=numProjects; i++) {
          var variables = projects[i-1].split(', ');
          var name= variables[0];
          var percent = variables[1];
          var type = variables[2];
          
          var styleFilter=otherStyle + 'top:0px; z-index:2;';
          var styleImg=genericStyle + 'top:0px; z-index:3;';
          document.write('<tr style="position:relative; left:0px; top:0px;"><td style="position:relative; left:0px; top:0px;" width="118"><div style="position:relative; left:0px; top:0px;">');
          document.write('<div style="' + styleImg + '"><img border="0" width="121" src="YOUR LINK/sm_' + type +'_clear.gif" height="50"></div>');
          
          var amtWhite = 50 - (50*(.01*percent));
          var whichFill = wipColor;
          
          if(amtWhite == 0) {
             whichFill = foColor;
          }
          document.write('<div style="' + styleFilter + ' background-color:' + whichFill + ';"><img width="121" src="http://i5.photobucket.com/albums/y181/ferryfax/clear.gif" height="' + amtWhite +'"/></div>');
          document.write('</div></td><td><span style="' + fontStyle + '"><b>'+name+'</b>: ' + percent + '%</span>');
            document.write('</td></tr>');
       }
       document.write('</table>');

    </script></div>   

    The lines
    Code:
    projects[projects.length] = "SPINNING, 100, sheep";
       projects[projects.length] = "Kureyon Scarf, 40, scarf4";

    are the ones that you have to change or add - one for each project you have. The first item eg SPINNING is what you want to call it, the number next is the % complete, the final item is the picture you want to display and must correspond to one of the xxxx in the names of your picture files.
    Also in the code you must replace where it says YOUR LINK with the common URL part you have for your pictures. (All but the sm_xxx_clear.gif part)
    When those changes are made you can save the page element and check if it works.
    Hopefully I have got it to play nicely both with Internet Explorer and FireFox but please let me know if you have any problems or if I need to explain anything better




_________________
Jacquie

Jacquie's Journal
Crafty Threads 'n' Yarns
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Bloggers' Paradise Forum Index -> Code Exchange All times are GMT
Page 1, 2, 3  Next
Page 1 of 3
  

Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Card File  Gallery  Forum Archive
Powered by phpBB © 2001, 2005 phpBB Group
Create your own free forum | Buy a domain to use with your forum
Wordpress Theme|Myspace Friend Train|Debt Consolidation|Myspace Layouts|Debt Consolidation