CrocoDillon
-
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?)
-
animate css not working on firefox
I think you need curly braces instead of parentheses: .animated:hover { -webkit-animation: flash 1s; -moz-animation: flash 1s; -o-animation: flash 1s; animation: flash 1s; } @-webkit-keyframes flash { 0%, 50%, 100% {opacit…
-
css textured background looks ugly help?
Actually it is a CSS question, it's because the page height is less than window height. You can fix it by setting the background on the html (or body) instead, I think a background on html (and maybe body too, at least in Chrome) extends to ful…
-
css textured background looks ugly help?
You'd need something repeatable to fix that (start by removing no-repeat and you'll see where it's repeating). You could use background size to stretch it but I wouldn't recommend that.
-
Imbalanced line-height
I think (as typographic newbie) it might be a font with a small x-height you're referring to. With line-height the extra space always gets evenly divided (so space above font = space below font = (line-height - font-size) / 2). I'd go with…
-
jQuery: keypress event should only function once
Not sure what you are trying to do... but you could remove the event listener in the event callback, but everything inside http://popaquestion.com/kaj/js/animatie.js will only fire once then.
-
How to make these actions flexible (Jquery)
Yeah that's what I did right? With the innerHTML stuff of the last comment.
-
How to make these actions flexible (Jquery)
Trying something like: `var imageContainer = document.getElementById('image_container'); $('#gallery_section').on('click', '.gallery_content', function() { if ($(this).data('type') == 'video…
-
How to make these actions flexible (Jquery)
Uhmm... yeah maybe. Maybe go back to having all the images, videos, and what else already in your image_container and just use the index of the clicked element to show that index in the image_container. Alternatively: http://www.codepen.io/anon/full…
-
jquery error "Object .sliderImage has no method 'apply' "
Try $('#myImageFlow ').on("click touchstart",".sliderImage",touchStart); you want to give a reference to the function as parameter, what you're doing with parentheses touchStart() is running the function and g…
-
How can I tell if my website looks right in older browser versions besides Chrome?
You can use the devtools in IE (press F12 and you'll find the option "Browsermode" and "Documentmode", make sure to change both appropriately) Alternatively, you can use the VMs from moder.ie, but I haven't tried those…
-
Some examples of sites that use em
For what? Fonts? Layout? Media Queries? I prefer rem with px fallback for fonts but otherwise em on my own websites, here and here.
-
How to make these actions flexible (Jquery)
The data-src attributes need to be on the thumbnails. Check my previous comment HTML part.
-
Are my images being downloaded on mobile devices
See test 5 here: http://timkadlec.com/2012/04/media-query-asset-downloading-results/
-
Google is awesome! anything like it?
I attempted to recreate that after a tweet from CodePen: https://twitter.com/CodePen/status/337283893646475267 Result: http://codepen.io/CrocoDillon/full/sxgzF Not perfect but close enough, if some one sponsors me with about the same amount of mon…
-
How to make these actions flexible (Jquery)
You can make a global click listener like this: $('#gallery_section').on('click', '.gallery_content', function() { // do stuff }); then you can add more content even after document load. I'd go with some easie…
-
Fixed Navigation Upon Scroll Point
It's something like this: http://codepen.io/CrocoDillon/pen/kFoJm Change position to fixed using JavaScript (They are adding a class fixed which basically does the same)
-
How did Chris Coyier learned web designing?
@JoshWhite, am I the only one who got a very weird impression by reading that footer? :P
-
Styling div inside li
li div { text-align: center; } or am I thinking too simple now? :P Like Paulie said, you need to add ul or ol to make it work though.
-
SCSS to css
How much is little? I've heard Sass is slow so I give it a second or two to compile.
-
How to float the content to the Image?
You have p { clear: both; } in your CSS (defaults.css line 289)
-
Repeat or loop the jquery animation (help)
Ah cool, not sure if you wanted to animate the reset as well :P Yw! You can remove the setTimeout I think.
-
Repeat or loop the jquery animation (help)
Seems like you already figured it out with delay :) This might help if you want to delay resetting width to 0 as well: function reslide(){ $('.slide-right').delay(1000).queue(function(){ $(this).css({width:'0'}).dequ…
-
SCSS to css
I'm using Compass.app as well (bought it like a day before @Subash came with Prepros) It's easy to use but Prepros seems easy to use as well.
-
Repeat or loop the jquery animation (help)
You need to reset the width before animating again: $(document).ready(function(){ reslide(); }); function reslide(){ $('.slide-right').css({width:'0'}).animate({width:'100%'}, 400, reslide); }
-
Database learning
I'm just trying to reduce the time it takes the database to remove the extra characters. See first table here http://dev.mysql.com/doc/refman/5.0/en/char.html, no extra characters are stored unlike the CHAR type.
-
How long did it take you to learn all the computer languages you know today?
I only learned HTML5, CSS3, and alittle Jquery. I think you could have skipped the word 'only' here. Those 3 you mention are a handful... this saying comes to mind "easy to learn but difficult to master" :) I have a frie…