Jump to content

Span transition


slj90

Recommended Posts

Is it possible to have an effect on a span?

I have a peice of javascript that changes the contents of a span and want a css effect to take place when it has changed:

.spanname{
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

Thanks

Link to comment
Share on other sites

  • 4 weeks later...

Hi, slj90!

Yes, it is possible to have an effect on a span. You can style it just like styling other elements.

You can style it directly in your .css file

span{
 background:#000000;
 color: #1E90FF;
}

If it is under a <div> section with a class divName,
 

.divName span{
  background:#000000;
  color: #1E90FF;
}

or if your span has an id spanName,
 

#spanName{
  background:#000000;
  color: #1E90FF;
}

If you're using Javascript, you can use the .css method to change the style of your span.
You can refer to this:
http://api.jquery.com/css/

I hope this helps. Thank you.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.