Is there a way to do an inverted rounded corner in CSS3, something approximately like the bottom left corner in the (crude) drawing below?
/-------\
| |
| |
| |
| ______/
|/
I`m trying to create an animation using CSS3 transition.
The animation is a gradient background that should change his color (rgba).
I used the webkit tag for the gradient and it`s working in Chrome 5.0.375.55.
Looking into w3c site I see that "background-image - only gradients" is supported for the transition.…
Hello,
I wanted to be able to create a effect identical to CSS3 text-shadow Property, making it available to browsers that doesn’t support this CSS3 Property (like IE 7 and 8).
And so I found two plugins: Text Shadow and Drop Shadow Effect.
I decided to use Text Shadow, because it was released in the end of…
Hello all,
After my 1st question with relation to CSS3 gradients in which I was recreating an 'inner glow' I've now got to the point where I'm not so happy with the way in which webkit renders the effect.
Basically, if you give an element a background colour and apply a border radius to it, webkit lets the…
I have tested both ways. jquery animation and css3 transition, and css3 is a little bit faster. But i have a problem with the following code:
$(document).keydown(function(e){
if (e.keyCode == 39) {
var DocHeight = $(document).height();
$('.container').css("margin-top","-="+DocHeight)
}
});
if i…
I'm using the W3C CSS Validator with the Profile CSS3 but the validator says that my CSS rgba()'s are wrong.
I looked up the Color Module Level 3, and the syntax is the same as mine.
I also tried the Dev-Validator, same result.
Example input:
div.class {
border: 1px solid rgba(0, 0, 0, 0.5);
}
Am…
HI, I've just been experimenting with a CSS tooltip that fades in with CSS3's transitions.
I've got it working up to a point, but for some reason, when I hover over where it's meant to be, it activates, even though it's positioned left:-999px;.
So basically, what am I doing wrong/is what I was going…
I'm starting a side project and want to build it with html5/css3. Is not a concern backward compatibility.
I wonder if exist a framework similar to BluePrint/960 grid system. Mainly, I'm looking for the grid system & typografy.
The best (and only I found that play nice with html5 new tags) is…
I'm trying to curve text this effect using CSS3, HTML Canvas, or even SVG (see image below for example)? Is this possible? If so, how can I achieve this effect?
Originally posted on: http://geekswithblogs.net/TATWORTH/archive/2013/10/24/apress-deal-of-the-day-24oct2013---css3-solutions.aspxToday's $10 deal of the day from APress at http://www.apress.com/9781430243359 is CSS3 Solutions
"CSS3 contains a broad set of new additions and changes…
Goal
I'm working on a collapsible sidebar using jQuery for animation. I would like to have vertical text on the sidebar that acts as a label and can swap on the animateOut/animateIn effect.
Normally I would use an image of the text that I've simply swapped vertically, and switch it out on…
You could define the transition on the :hover event, which causes the browser to render only the effect into the hover and not out of it.
a:hover {
transition...
}
Using scale as an example, an image being scaled up would scale up on hover, but go straight back down without any…
Using this jquery script to acheive CSS3 3-columns, to display a list of members alphabetically.
I need it to display this way, which is does:
A D
B E
C F
Here is what I am using http://www.csscripting.com/css-multi-column/example6.php? (using this js file…
I'm having an issue where I'm trying to update the background gradient of an element with JavaScript based on values I specify.
I tried this route:
elem.style.backgroundImage = '-webkit-gradient(radial, '+x+' '+y+', 0, '+x+' '+y+', 800, from(#ccc), to(#333)),…
I'm doing some tests with new features of CSS3, but this combination only works in lastest versions of Chrome and Firefox, but not in Safari or Opera:
box-shadow: inset 0px -10px 20px 0px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: inset 0px -10px 20px 0px…
Hello chaps and chapettes,
I've got a bit of a strange one for you (so to speak). I've devised a little 'coming soon' page for my site which, locally, (on a WAMP setup) is working flawlessly - in capable browsers (i.e. Chrome and Safari), the page looks fine…
Is it possible to achieve a Fadeout effect with CSS3 Box Shadow?
Here's what I have so far?
This only adds inset shadow to the vertical sides but I need to achieve a fade out effect at the top.
-moz-box-shadow: inset 5px 0 7px -5px #a4a4a4, inset -5px 0 7px…
Hi,
I am trying to replicate an Apple style activity indicator (sundial loading icon) by using a PNG and CSS3 animation. I have the image rotating and doing it continuously, but there seems to be a delay after the animation has finished before it does the…
I bought a responsive html5 template to create a website for my band. But I miss a page of tour dates, and would create a unique content, simple and quick to load on any device.
I have the idea ready, something like buttons (months) to change on hover and…