Rugg
-
Best techniques for image optimisation (Standard and Retina)
Also… Optimizing for High Resolution
-
Best techniques for image optimisation (Standard and Retina)
@siouxfan45 That does work. I would only use that method if you're serving a limited amount of images…otherwise your load times will suffer drastically. Have a look at the following resources for further info about this… Images on retina Re…
-
Best techniques for image optimisation (Standard and Retina)
Have a look at ImageOptim. It strips out unnecessary image data resulting in a smaller compressed file suitable for web. I typically save images for web (normal size) in PS then use ImageOptim for final production. You simply drag the intended imag…
-
I've been looking for other sites like this, are there any?
http://stackoverflow.com/
-
Animate :before pseudo class?
Hmm…I'm using Safari 6…does that work on your end? I'm thinking I'll just call the animation on a span for better compatibility…
-
ImageOptim is darkening/saturating images?
Thanks for the feedback
-
Anyone use google Closure Compiler?
Hey all… Thanks for the input! Until now I've been using a JS pack/minify plugin for coda…but it doesn't always produce the best output…which is why I began looking at closure compiler. Think I'll mix it into my workflow now.
-
Mobile swipe support for click events?
Thus far I've looked at the following plugins that can potentially accomplish the goal. I prefer a method that relies on jQuery without the additional loading of jQuery Mobile/UI. Any further suggestions or ideas? Thanks Hammer.js / touchSwip…
-
Issue with :nth-child()
@paulie_d I understand that, but I'm wondering if there is a way to exclude the first element…from the nth count? Are you aware of any methods? The only way I've solved that is simply by adding one more to the nth. For instance, .box:nth…
-
Issue with :nth-child()
@chrisP That could certainly work in some cases…however if you have a look at the example I posted…I need to be able to target specific elements with the class name 'box'. Ideally it would be nice to exclude the 'top' div from t…
-
Prevent css3 animation from returning to original state?
Yep…guess that might be the only method for now. Here is further reading on the subject for anyone interested… http://css-infos.net/property/-webkit-animation-fill-mode
-
Clear jQuery cache on page refresh?
Yea…my mistake. Apologies for the confusion.
-
Clear jQuery cache on page refresh?
This is actually standard browser behavior and not an issue with jQuery DOM cache. For anyone interested, I solved this by adding the following code to jQuery. Essentially it will reset the page/scroll position to the top after a refresh. $(documen…
-
Clear jQuery cache on page refresh?
@mottie Yes…I'm seeing the issue on your demo also. In short…when the browser is refreshed, the scroll position remains in the same spot, instead of starting at the top again. Any idea how to solve that?
-
How do I link to a PDF file?
@kmj2318 Is the PDF file on your server? If so, is the file path correct? Personally, I like to create a folder called Download and include the associated files. Using that method, your code would be as follows… Course Schedule The target="…
-
How do I link to a PDF file?
You can simply link to the file path in your href tag. Be sure to include the PDF file on your server… Download PDF
-
Issue with jQuery slideToggle 'display: none'
@podders Hey there…that seemed to correct the issue. Thank you for the help and patience.
-
Issue with jQuery slideToggle 'display: none'
@podders I'm using Safari Essentially…when I hit the break point, the Nav div (yellow) remains open for a split second and then closes automatically as a result of the breakpoint triggering the first animation. Is there anyway for the Nav di…
-
Issue with jQuery slideToggle 'display: none'
@podders Thank you for the suggestions and help. I had a feeling that css transitions could do the trick, just couldn't figure it out on my own. Out of curiosity…I noticed upon entering the 768px breakpoint, the Nav div remains open for the du…
-
Issue with jQuery slideToggle 'display: none'
@podders Your example corrects the issue, but it seems to lose the sliding animation from slideToggle. What would you recommend for keeping the sliding animation? ALSO: I attempted to combine my original code with your update. Essentially using a …
-
JQuery animate() function
Try adding a duration to the animations. For example… $("#resizer").click(function(){ if($("#slider").height()=='300') { $("#slider").animate({height:'650'}, 600); $(&quo…
-
Center 2 DIVS side by side in wrapper?
@noahgelman your pen seemed to be the same as posted above…I'm assuming this is what you were referring to… http://codepen.io/anon/pen/CGwgn
-
Center 2 DIVS side by side in wrapper?
@codegraphics Awesome… and thank you
-
CSS transition only for transform:scale ?
@crocoDillon I actually attempted that earlier and it failed to correct the issue, but I just tried it again…adding browser prefixes and it works as it should. Thanks for the suggestion!
-
Combing two :hover classes?
Thanks for the suggestions! I like to work with raw css, but perhaps I'll dive into something like SASS in the future…
-
Delay .addClass with jQuery?
@eldeeff Great…thanks for suggestion.
-
Minified VS. Packed Javascript?
@merri Thank you for the information!