CrocoDillon
-
integrating javascript into html - beginner help
What you're looking for is either AJAX loading your pages (AJAX to load new content) or some kind of tabbed navigation (where all the content is already loaded but hidden using JS) Using jQuery, both are easy enough even without much JS backgr…
-
How big (file wise) should my background image be?
You think almost correctly (PNGGauntlet*)
-
CMS
I don't think you would need years for something small but functional, but it would help if you already know PHP or something.
-
Cannot align menu-div centered
Add padding: 0; to .navigation ul.
-
Cannot align menu-div centered
@Paulie_D, need block too (it's set to inline-block now) .navigation ul { display: block; text-align: center; }
-
Religious Site Design Ideas?
It sais: This Account Has Been Suspended :P
-
nav not full width of parent
As in: #nav { padding: 0; margin: 0; } ?
-
Css3 animation time delayed restarts
Remove and add a class. Easy peasy. Only if you put a delay or something that triggers some magic shizzle in between it :P
-
Css3 animation time delayed restarts
You can probably do that with CSS itself with the animation-delay property (see http://www.css3files.com/animation/), else read this http://www.css3files.com/animation/, but put it in a setTimeout callback instead of an event listener. If you speci…
-
This Type Of CSS Naming Style is Strange
That's another thing I like about Sass, silent comments // types much faster than /* */ and won't be included in production CSS :)
-
@CrocoDillon Website Contact Form
I'd open a new thread for that. I have to go soon and can't go into details. I'm using Zend\Mail (comes with Zend Framework 2 but can be used alone) and it's as simple as: $mail = new Message(); // Zend\Mail\Message $mail-&g…
-
@CrocoDillon Website Contact Form
Here is my question. where does the form data sent to? The same page, I have to find a better solution for that (something that returns JSON with success or failure messages). Now it just waits for any response and assumes success. I will fix t…
-
@CrocoDillon Website Contact Form
In response to what you submitted: Hi back :P Yeah @pixelgrid is right, I created the Pen first to play around with the idea and then used almost the exact same JS live. Just view the source of that page, I kept everything inside the html because i…
-
Button/checker/draught (call it what you will) help, please.
There are websites where you can paste images, like http://snag.gy/ Easier to see what you're after if you do that :)
-
This Type Of CSS Naming Style is Strange
Maybe 'd' from 'disable' or something? I often add an extra character to disable a property for testing, it's much quicker than commenting the whole line out.
-
get variables with mod_rewrite
I don't know much about how .htaccess works with regular expressions but ^([^/]*)(.*) reads to me as 'start of string, capture anything without a slash, capture anything that follows', which are exactly the 2 captures you're gett…
-
IDS and Class
Nice read Hugo :) (especially the conclusion)
-
Need help with Jquery sprite animation
Really? Can't believe I missed that... ah well glad you solved it! :)
-
Need help with Jquery sprite animation
You should check out demo 5 ( link ), and try that instead... except browser support might be bad (though they have demos with transition on opacity too and they seems to work).
-
Solution 1: Fluid Container Height Based on its Background Image Height
I've used something like that to create responsive animated sprites :) http://codepen.io/CrocoDillon/pen/ekuxb
-
Need help with Jquery sprite animation
I'really puzzled... hope some one else tags along. It's not a bug, else it wouldn't be in Chrome, Firefox and Opera (and maybe Internet Explorer if you add the unprefixed transition property). Try to create a simplified nav in CodeP…
-
Need help with Jquery sprite animation
Remove the jQuery part.
-
Need help with Jquery sprite animation
Yeah, but the white background is coming from nowhere (tried setting the white backgrounds to something else, the fadeIn still started as white) Try with CSS transition on opacity instead of jQuery?
-
Need help with Jquery sprite animation
Dude, I'm lost on this one. If I change the opacity on the span using the devtools it works, but if jQuery changes the opacity using the fade animations there is this white thing.
-
IDS and Class
Yes, it's perfectly ok. Actually, it's not as @pixelgrid already mentioned. The value must not contain any space characters. - spec You can compare this definition to that of the class attribute, where it's explicitly state…
-
Need help with Jquery sprite animation
Try removing this script: http://samuelmitchelldesigns.com/wp-content/themes/twentyeleven-child/js/nav-script.js?ver=3.5.1
-
Need Help with Full width Nav+Dropdown
Something like this: http://codepen.io/CrocoDillon/pen/eCrnv Had to add a div wrapper around the children list.
-
Menu become Fix header on scroll
@CodeGraphics, include jQuery :) Btw, you won't have IE support with window.scrollY.
-
animate css not working on firefox
Which you have in your fiddle, so I think the problem is how you declare the animation name and the duration, together it seems to work: http://jsfiddle.net/BKnzr/398/ (why do you have the * in you -o-keyframes?)