Text with Moving Backgrounds with jQuery

57

Personally, I am a huge fan of negative space in design. This got me thinking while I was trying to accomplish something different. Normally a textual caption would be positioned above a background, but I wanted to do it the other way around: place the background in the letters.
I also wanted to add some nice dynamic effects to enhance the effect. This was amazingly easy to accomplish in jQuery with the use of a little creativity.

This article will explain what you need to do create an effect like this yourself.

Text with Moving Backgrounds with jQuery

Example
How does this look?

What are we going to do?

We are going to create a container which has a moving background, but only a set of letters will be visible of the background. It will be as if there are holes in your container.

To do this we need just a few things:

  • A nice background pattern or image
  • Letters punched out of an image
  • Just a little jQuery code

Normally you would create a PNG file containing anti-aliased letters and place it inside some container on top of a background. What we are going to do is place a full image over a background, covering parts that shouldn’t be seen. Just like a mask!

Then we’re going to make the background of the container move around to create a nice looking effect.

Step 1: Creating the “mask”

To create the overlaying mask I am going to use Photoshop. You can do this with any other image manipulation application, but I am going to explain what I did using screenshots of Photoshop.

  1. First create a new image and fill the background with the foreground of the mask.

    This is the part that will be visible for the users. I used a black solid fill for this, so it stays clean.

  2. Create a new text layer on the fill you just made.

    This gives us the right impression, and we just have to imagine that the white letters will be punched out later.
  3. Hold CMD / CTRL and click on the text layer icon

    Doing this the text will get a selection around it which should look like this:
  4. Click: Select > Inverse

    Now the area that will be visible on the mask image is selected. It will look like this:
  5. Select the fill layer and click on “Add mask”

    This will create a mask for the fill and the letters have been punched out.
  6. Hide the text layer

    You have now punched out the letters of the fill!
  7. Save as .png!
    PNG handles transparency very well and looks right in almost all current browsers (nope, not IE6). It also support opacity per pixel, so it’s not like the the GIF transparency.

Step 2: A little documenting and styling

Now that you’ve got your own mask image, it’s time to create the HTML page for it to end up in.

Just for basics, use something like this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="nl" lang="nl">
<head>
	<meta http-equiv="content-type" content="text/html; charset=UTF-8">
	<title>Some title</title>
	<link rel="stylesheet" type="text/css" href="style.css">

	<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
</head>

<body>
	<div class='scrollBg'>
		<img src='overlay.png' alt='' />
	</div>
</body>

</html>

We created a simple HTML page containing just two elements; the container “scrollBg” and the image that serves as the mask.

Make sure to fix the src of the image and the href to your stylesheet.

In the stylesheet we just need a little bit of styling:

body {
	background-color: #000000;
}

.scrollBg {
	background-image: url(background.jpg);
	background-color: #000000;
	width: 487px;
	height: 83px;
}

.scrollBg img {
	display: block;
}

You’ll have to fix the width and height of the scrollBg container. Adjust it to the width and height of the mask you created. This will prevent the background image from showing outside of the mask.

Also change the URL of the background image.

Step 3: Go jQuery crazy!

In the Javascript part of this tutorial we are going to make the background image shift in position at random.

To make jQuery able to move the background image, we need a plugin, since it’s not in the default behavior.

Go download this plugin: http://plugins.jquery.com/project/backgroundPosition-Effect

Include this script in on your page using:

<script type="text/javascript" src="url_to_moving_background.js"></script>

Now we can use backgroundPosition as a parameter in the jQuery animate effect! Pretty neat!

The following jQuery code will move the background around at random (put it in the <head> part of the HTML page):

<script type="text/javascript">
$(document).ready(function() {

	moveBgAround();

});

function moveBgAround() {
	//give a random value from 0 to 400 for the X axis and the Y axis
	var x = Math.floor(Math.random()*401);
	var y = Math.floor(Math.random()*401);

	//random generated time it takes to move
	var time = Math.floor(Math.random()*1001) + 2000;

	//make the background image move!
	$('.scrollBg').animate({
		backgroundPosition: '(' + (x * -1) + 'px ' + (y * -1) + 'px)'
	}, time, "swing", function() {
		moveBgAround();
	});
}
</script>

It’s that simple! You are now ready to experiment with the code I just created.

The X and Y values are the amount of pixels the background image will shift. He will not move that amount in pixel, but he will move to the generated coordinates.

If you would like to make it move more you can increase the number stated here:

var x = Math.floor(Math.random()*401);

If you want to create a background image that is not a pattern but rather just a large texture, you have to an image with the following width and height: Take the number that you entered in the script (amount after random()) and add the width of the mask to it: that is your width. Same goes with the height.
This will allow the background to move around without being repeated.

Done!

If you have any questions or was inspirited to create different crazy effects: let me know in the comments below.

Happy developing!

Articles like this one

If you liked this article you can add this post to:


 

43 Comments

  1. Marco said: January 8, 2010 at 7:27 pm | Permalink

    Pretty cool! Now to make a version where you can select the text etc., and you would be all ready to implement it :) . But I’m not really sure how userfriendly it would be :P .

    Anyway, nice POC and keep up the great work!


  2. devolved said: January 8, 2010 at 7:38 pm | Permalink

    Cool idea,

    I can really see this looking awesome on a 60s psychedelic style site for headings and banners.


  3. Andy Feliciotti said: January 8, 2010 at 8:08 pm | Permalink

    Nice tut but needs a rotate option

    My quick test w/ your tutorial – http://drawne.com/lava/bgtext/

    http://designbump.com/Javascript/Text_with_Moving_Backgrounds_with_jQuery


  4. moabi said: January 8, 2010 at 8:14 pm | Permalink

    very nice, as usual…


  5. jaQuery.com said: January 8, 2010 at 11:16 pm | Permalink

    This is amazing. Could be very usefull to alot of designers


  6. Chuck McQuilkin said: January 9, 2010 at 8:06 am | Permalink

    Very cool. Thanks for sharing this!


  7. Gaya said: January 9, 2010 at 3:15 pm | Permalink

    @Marco: Thanks buddy! It’s more an effect for headers and small animated elements, but selecting the text would be cool!

    @Devolved: Exactly ;) I should try that out haha.

    @Andy: I don’t know if rotating would be posible, could be with CSS3, but that’s not a standard yet :(
    Cool example buddy! I really like it.

    @Moabi, JayQuery and Chuck: My pleasure :)


  8. Travis Berry said: January 9, 2010 at 6:52 pm | Permalink

    Wow. Really cool tutorial. I don’t know what I’m going to use it for yet, but it looks awesome.


  9. Sieb said: January 10, 2010 at 4:55 pm | Permalink

    That effect is ridiculously good looking! Should use that on something some time soon. Nice and light and the result is pixel-perfect!


  10. Drew Douglass said: January 10, 2010 at 10:37 pm | Permalink

    Really neat stuff Gaya. Not sure when I would use this, but neat nonetheless. Added to the Dev-Tips communtiy feed :-)

    -Drew


  11. Gaya said: January 11, 2010 at 9:16 am | Permalink

    @Travis: Thanks :)

    @Sieb: Thanks buddy! I am sure we’ll get this going in some sort of cool way

    @Drew: Thanks for adding this to your feed! I am glad you liked it


  12. Larz said: January 11, 2010 at 5:39 pm | Permalink

    amazing effect, very cool idea!


  13. Cory Mathews said: January 11, 2010 at 6:58 pm | Permalink

    I was a bit bummed to see the text was an image. Next step is to figure out how to accomplish this with normal text. None the less a good end result.


  14. Andrew Champ said: January 12, 2010 at 2:45 am | Permalink

    *applause* You did it again. Very useful, very cool. Thanks for sharing bro.


  15. Daryn St. Pierre said: January 14, 2010 at 11:26 pm | Permalink

    Man, this is awesome! I can already see a lot of uses for this, including interactivity. Like if it moved depending on the X and Y position of your mouse pointer. Nice job!


  16. Salmen said: January 16, 2010 at 2:23 am | Permalink

    Awesome effect, great job


  17. Bugsy said: January 21, 2010 at 4:52 pm | Permalink

    This is brilliant, I love it.


  18. Mia said: January 22, 2010 at 2:19 am | Permalink

    You are def a JQuery-Zen-Master, all of your scripts are awesome ! I so enjoyed this one though- I couldnt stop staring at it :D this is great for a hypnotic effect ! :D This site will def be my new playground :)


  19. Sam said: January 27, 2010 at 1:26 pm | Permalink

    Oh~! It’s a good job! thanks.


  20. Nicolas said: January 28, 2010 at 4:02 pm | Permalink

    Man, this is amazing.. i love it !


  21. Dain said: February 5, 2010 at 10:44 pm | Permalink

    Neat! This article prompted me to try it with a css3 SVG image mask. Here’s my (Safari Only) demo:

    http://dainkennison.com/txtmask/

    Thanks!


  22. Mehedi said: February 10, 2010 at 6:43 am | Permalink

    Really a great tutorial :)

    Thanks
    Mehedi Hasan
    Web Designer & Developer


  23. Kai said: February 10, 2010 at 8:54 pm | Permalink

    Hi, nice tutorial, I will definitaley use this, but would it be possible, that the background only appears if you mouseover the object? Would be amazing for navigations…


  24. Brian Schmitz said: February 13, 2010 at 6:55 pm | Permalink

    Maybe delete/ignore previous post, please…

    Nice. I also like Jay Hollywood’s jQ… http://google.com/?q=Hollywood jQuery


  25. nic said: February 14, 2010 at 12:15 pm | Permalink

    hi mr kessler
    my name is nicolas koller (switzerland) and i’m a typographic artist. i like the style of your website especially your arts programming. I’m just wondering what kind of CMS do you use?


  26. Gaya said: February 14, 2010 at 12:19 pm | Permalink

    Thanks for all the comments!

    @nic: I use Wordpress :)


  27. Ben said: February 16, 2010 at 5:51 pm | Permalink

    Sorry, I didn’t like this. I came here super-impressed to hear of “text” with a moving background. I was expecting some CSS3 stuff I’d never heard of… instead I saw an image with a moving background, not text.

    It’s a cool effect, but nothing mind blowing.


  28. @pmulc07 said: February 16, 2010 at 6:14 pm | Permalink

    Nice effect, but like Ben said image masks are nothing mind blowing.

    It would be AWESOME to see this working with sIFR (http://www.mikeindustries.com/blog/sifr) so you could change the text dynamically. That would also solve the text-highlighting issue. Some food for thought ;)


  29. Robine said: March 9, 2010 at 4:59 pm | Permalink

    Very cool! I am starting to become a jQuery addict. Your layout looks pretty sweet as well..


  30. Mike said: March 17, 2010 at 4:04 pm | Permalink

    Pretty interesting effect to say the least. jQuery is so fun, isn’t it.


  31. BEBEN said: March 18, 2010 at 12:01 am | Permalink

    awesome…like this web name, awesome too
    in my country GAYA is STYLE in english
    full gaya :D


  32. Dexter said: March 18, 2010 at 10:22 am | Permalink

    awwesom man…its super cool…………..i m in lov with it….


  33. MOPVHS said: March 28, 2010 at 4:10 am | Permalink

    Nice…


  34. vector graphics said: April 12, 2010 at 11:54 am | Permalink

    i dont see any CMD key on my pc. where is it located? i dont use MAC.. :)


  35. Jack Rugile said: April 27, 2010 at 7:57 am | Permalink

    Mmm, this is pretty tasty!

    I think a cool effect could be achieved with a texture that is continuously rushing by either completely horizontal or vertical. Like if there was a floor mask that had square windows cut out of the bottom and water was constantly rushing by.

    I definitely love your application of it though. It definitely opened my mind a little bit as to what jQuery can do. Thanks :)


  36. free font said: May 4, 2010 at 5:01 pm | Permalink

    whoaaaa… this is awesome!
    thank you very much for sharing the scripts ^^!
    much appreciated


  37. Airos said: May 10, 2010 at 8:13 am | Permalink

    Nice presents,good works,Thx


  38. denker said: May 20, 2010 at 9:31 pm | Permalink

    really nice!!!


  39. pkr said: June 2, 2010 at 9:37 am | Permalink

    Great stuff, thx for sharing.


  40. Website Design said: June 12, 2010 at 6:55 am | Permalink

    How Smart work so great post..
    thanks


  41. life simple said: July 5, 2010 at 8:13 am | Permalink

    great!
    yumo99.com


  42. Pepe said: July 29, 2010 at 8:53 pm | Permalink

    Hi Gaya,

    I have read your last comment on setting a different BG, i ve been trying to add a masked image of 543 width and 400 height but it only moves once and then it stops.

    Could you tell me the measures the BG needs to have ?

    Thx


  43. buzzknow said: August 18, 2010 at 10:34 am | Permalink

    hi, its really nice jquery effect … never thinking about it before :)

    thanks


Leave a Comment

Your email is never shared. Get your own avatar with gravatar! Required fields are marked *

*

*