Mottie
-
Anything slider code on Github does not work for Youtube iframes in Chrome on Mac
Hi @LucyRyder! I don't own a Mac, so I'm not sure why Chrome for Windows would work but not Chrome for Mac. IE7 doesn't support cross iframe communication, so it won't work (Note the table here); and I doubt it will ever work b…
-
AnythingSlider
Hopefully, I answered your question sufficiently over here: https://github.com/CSS-Tricks/AnythingSlider/issues/555 Sadly, I won't be around for a few months, but someone should be available to help you.
-
Responsive design: how to vertically center the text
Check out this article.
-
Jquery plugin problem
In codepen you can add multiple external script files by clicking on the gear in the js window Then add the urls in the "External JS File" input separated by semicolons http://mysite.com/script1.js;http://mysite.com/script2.js
-
AnythingSlider flickering images
Hopefully I answered your question here: https://github.com/CSS-Tricks/AnythingSlider/issues/552 :)
-
Vote for CodePen's rodeo
@CodeGraphics I don't know about other people, but with some pens, I actually need to change the code in some way (just press enter or space anywhere) to make it refresh before the result window shows anything, especially when canvas is used...…
-
slightly complex icons - Icon Font or Sprite?
As far as I know, icon fonts can't really work with gradients. Here are some examples of "gradient" fonts which basically include intermediate spacing of black lines to give an appearance of shading. Another possibility would be to ma…
-
Visibly hidden input not rendering text
Hmm, I turned off all of my extensions in Chrome... maybe it's just Chrome for Windows. sigh
-
Nesting logic help!
Hey, really busy, so I wasn't able to get the horizontal resizing of the content and output to stop properly, but hopefully this will get you half way there: var $win = $(window), $side = $('#sidebar'), $content = $('#co…
-
AnythingSlider: FOUC flash of unstyled content
Hmm, then try initializing the FX extension in a $(window).load(function(){ ... }); instead of along side the AnythingSlider initialization in the document ready function.
-
anythingSlider: Building a BBC-like navigation
@Aleksandr You might want to add this css to get the thumbs above the left navigation arrow (demo): .anythingSlider .arrow { z-index:-1; }
-
anythingSlider: Building a BBC-like navigation
@Aleksandr It's not exactly the same, but check out this demo $(function () { $('#slider').anythingSlider({ theme: 'metallic', onInitialized: function(e, slider) { var i, s, $tooltip = $('…
-
AnythingSlider: FOUC flash of unstyled content
@ChrisMzzz Try setting the stopRepeat FX option to true.
-
AnythingSlider Linking Directly To Slides from Static Links
Hi @carolemagouirk! You should be able to just use the AnythingSlider api to control the slide... try something like this (demo): $(function () { $('#slider').anythingSlider(); $('#thumbs img').click(function(){ …
-
How is this effect accomplished?
Check out this plugin, or these others.
-
AnythingSlider: FOUC flash of unstyled content
I'm not seeing what you mean by FOUC... at least not on my desktop in Chrome, Firefox or IE... do you mean the delay before the images show up? It might be better to reduce the size of those panel background images because it looks like they ar…
-
Check if input value is >= 8 &
Try this (demo): $(document).ready(function () { var $field = $('#field'), nul = 0, min = 8, max = 32, $h4 = $('h4'), showMessage = function (msg) { $h4.hide().stop(true, …
-
Check if input value is >= 8 &
Since you already have val defined, you can just do this: if (isNaN(val) && val.length >= min && val.length
-
Single page website smooth transition to anchor link?
You can download my visualNav jQuery plugin from Github: https://github.com/Mottie/visualNav That file contains everything you need. You can access the documentation here: https://github.com/Mottie/visualNav/wiki
-
jQuery fadeIn text, delay, and fadeOut text bug
Hmm, that is acting very oddly. I ended up just using a .hide() first because for me even with the display:none @TheDoc suggested, it wasn't working - the "Enter a password" section didn't even have a fadeIn(). Anyway here is ho…
-
scrollTo #ID with mouse-wheel (jsfiddle attached)
Here is an updated demo created because Github no longer allows linking to raw.github.com files (the browser sees the files as text instead of js or css type files).
-
Syntax highlighting for textarea via greasemonkey or similar
You can't show formatted/rendered HTML elements inside of a textarea. As @JoshBlackwood mentioned two good editors, I would like to include another named Aloha Editor. It also has a plugin for editing HTML source.
-
Problem trying to retrieve a json object
I was messing around with this... it seems that site is only returning json, not jsonp. - see this answer to find out why they are different.
-
Using jQuery to stop audio
@FragaGeddon that screen cast is from 2009 and it doesn't look like he talks about HTML5 audio. Either way, it's cool :P @swissdude: I ended up making one small addition to change the pause button back into a play button when the audio fi…
-
Using jQuery to stop audio
Try something like this (demo): var togglePlay = function($el, playing){ $el.children("i") .toggleClass('icon-play', !playing) .toggleClass('icon-pause', playing); } $(".track-play").cl…
-
how to left justify anythingslider instance
I'm glad you found your solution!... just edit your first post in this thread, the check box is under the textarea.
-
how to left justify anythingslider instance
The default AnythingSlider theme adds left, right and bottom padding for the controls (arrows and navigation tabs).
-
Slider not working on IE, but fine with Chrome
@ElijahFowler I was seeing the error in IE10.