|
|
Creating Themes with CSS and JavaScript After you create a default stylesheet, just copy it and use it as a template for additional style sheets, or themes. Store all style sheet files in a single common folder. To import a style sheet into an HTML document after creation, you write:
3. Implementation in JavaScript Now that we have the static parts, it's JavaScript's task to make this dynamic. What needs to be done?
We need a solution to dynamically import a style sheet. This can't be done in JavaScript only, so we need an old friend's help,
To make this reusable, you have to consider two points. First, of course, you have to wrap it in a function (see It's very important to use absolute paths -- paths that are evaluated starting from your document root folder. This is necessary because you'll have to adjust the path every time you insert the script into a new document which has a different relative location to your style sheet files -- which isn't really a reusable script solution. When you look at the code line above, you'll also find the variable Next we need a method to let users choose between different styles, so we create a reusable function called
To store a theme's name after setting it, we use cookies, which allow us to store data across sessions. This is needed because HTTP, the underlying web protocol, is a stateless protocol -- it doesn't know about you the next time you request a resource from a server. From the JavaScript programmer's perspective, a cookie is a semicolon delimited string of key/value pairs. Since we're lazy and don't want to reinvent the wheel, we'll use an existing cookie library that I took from O'Reilly's "JavaScript Application Cookbook" by Jerry Bradenbaugh. This small library contains the basic methods needed to work with cookies. Inside While the document is reloaded 4. Step: Add the script and correct settings The last step is to include the JavaScript library into your documents. What we didn't consider so far is what happens to clients with JavaScript disabled. To avoid breaking your documents, you also need a
After you create the snippet with the correct (absolute) paths, you can just cut and paste it anywhere in your site's documents. You must take care that you always point to the same default style sheet (in case you're not supplying a style sheet for users without JavaScript). This must be specified as a constant variable, You can find the complete source code and a set of example files in our JavaScript library. ConclusionAs we saw, implementing your own themes is easy as long as you understand the underlying principles and technologies. Also, keep in mind, that CSS support is not as consistent as it should be. For sites with a large audience, you should stick to the old dirty way. While we didn't discuss all the complexities in this article, hopefully, you've become curious for more -- and that's really all I wanted. Stay tuned! Claus Augusti is O'Reilly Network's JavaScript editor. Read more Essential JavaScript columns. Return to the JavaScript and CSS DevCenter. |
|
|
|
|
||||||||