Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is possible set css "opacity" effect speed? Or need use jQuery?

share|improve this question
1  
I think you need to clarify your question. Are you talking about jQuery .fadeOut() / .fadeIn()? – Tejs Apr 18 '11 at 21:05
Might be possible with CSS3 – John Catterfeld Apr 18 '11 at 21:07
Awesome downvote, well done! If the OP doesn't even have sense enough to be a native English speaker, well, he deserves to be downvoted, by Jingo! I particularly like that you downvoted with no commentary; that's the spirit! – Pete Wilson Apr 18 '11 at 21:14

closed as not a real question by Tejs, Otávio Décio, Tim Cooper, Blender, Graviton Apr 19 '11 at 3:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

No. You need to use .fadeIn('slow or fast') or .fadeOut('slow or fast')

share|improve this answer

CSS3 transitions can do it. I'm doing the following for a mouse-activated toolbar:

css

<style type="text/css">
#cmsToolBar {
    font-family: helvetica,arial,sans-serif;
    font-size: 1.1em;
    padding: 5px;
    line-height: 1.5;
    min-height: 1em;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    color: black;
    background-color: #DDDDBB;
    opacity: 0.15;
    border-bottom: dotted 1px black;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
#cmsToolBar:hover {
    min-height: 5em;
    opacity: .98;
}
</style>

html

<div id="cmsToolBar">
  <p>This is where the CMS tool bar will go</p>
</div>
share|improve this answer
remember -ms-transition for IE10pp2... Also I'd add transition without a vendor prefix for future compatibility. – Rich Bradshaw Apr 18 '11 at 21:13
Didn't know about the IE version. But the example above already has a generic transition defined. – GordonM Apr 18 '11 at 21:18

Sure, take a look at this example which uses CSS Transitions!

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.