Listing 41 to 80,
1 to 40 in the jquery-tweets-tutorials-by-greg-sidelnikov-part-1
81 to 101 in the jquery-tweets-tutorials-by-greg-sidelnikov-part-3
#jQuery tutorial tweet 41 ~ use .animate(arg); to dynamically change the CSS style of an element to a new state specified as first argument.
— Greg Sidelnikov (@gregsidelnikov) July 23, 2012
#jQuery tutorial tweet 42 ~ In .animate(css); The first argument “css” is usually a JSON notation. Ex: {left: “100px”, top: “10px” }
— Greg Sidelnikov (@gregsidelnikov) July 23, 2012
#jQuery tutorial tweet 43 ~ $(“div”).animate({left: “+=100px” }); will slide the selected div right by 100px counting from current location.
— Greg Sidelnikov (@gregsidelnikov) July 23, 2012
#jQuery tutorial tweet 44 ~ $(“div”).animate({opacity: 0.25, }); to dynamically fade an element to an opacity of 25% (cross-browser.)
— Greg Sidelnikov (@gregsidelnikov) July 23, 2012
#jQuery tutorial tweet 45 ~ $(“p”).css( { opacity: 0.25 } ); and $(“p”).css( “opacity”, “0.25″ ); are one and the same thing.
— Greg Sidelnikov (@gregsidelnikov) July 23, 2012
#jQuery tutorial tweet 46 ~ Add border and animate it to red: $(“p”).css( “border”, “10px solid blue” ).animate( { borderColor: “red” } );
— Greg Sidelnikov (@gregsidelnikov) July 24, 2012
#jQuery tutorial tweet 47 ~ Animate font size in all paragraphs to 100px over 5 seconds ~ $(“p”).animate({ fontSize: “100px” }, 5000);
— Greg Sidelnikov (@gregsidelnikov) July 24, 2012
#jQuery tutorial tweet 48 ~ $(“p”).animate( { borderColor: “red” } ); will not work unless jquery-ui.js is included in addition to jquery.js
— Greg Sidelnikov (@gregsidelnikov) July 24, 2012
#jQuery tutorial tweet 49 ~ $(“p”).animate( { borderWidth: “200px” } ); will work without jquery-ui.js (However “borderColor” will not.)
— Greg Sidelnikov (@gregsidelnikov) July 24, 2012
#jQuery tutorial tweet 50 ~ There are a lot of things wrong with #jquery. Nobody talks about it because they think they’re the wrong ones.
— Greg Sidelnikov (@gregsidelnikov) July 24, 2012

[...] Media Queries para dispositivos mobiles. jQuery tweets tutorials by Greg Sidelnikov – Part 2 jQuery tweets tutorials by Greg Sidelnikov – Part 1 By Tmeister On July 31, 2012 · [...]