November 19, 201213 yr I have attended “jQuery Conference Asia”. 400 Asian web developers, designers, and publishers attended the first ever jQuery conference held in Asia. Seven jQuery Foundation board members along with three professionals from Samsung and Incross spoke at the conference, providing attendees with the latest jQuery and HTML5 developments and trends. According to the jQuery Mobile team, South Korea is the most popular country for jQuery Mobile development in the world. Corey Frang in charge of jQuery Animation development has presented Core and jQuery UI effects of jQuery animation components. He specifically described codes and explained them on each topic. “Queues, Animate, Easing, Shortcuts, Timers” for Core and “Animate Classed, Widget Effects, jQuery Color, etc.” for jQuery UI effects. DaVinci Team presented how to develop web app. using HTML5 authoring tool and methodology as well. Those techniques that Corey presented helped me a lot with my animation and web design. Edited November 19, 201213 yr by flyingdraw
November 20, 201213 yr Author Automatic Preixing CSS3 into jQuery core library I have attended jQuery Conference Asia 2012. Corey Frang, the person in charge of animation development, mentioned about Prefixing CSS3. CSS3 prefixing like below is a burdon for designers, so jQuery is adding a NEW functionality of automatic prefixing CSS3 into jQuery Core Library. When this is done, it is going to be very useful for us. .box_gradient { background-color: #444444; background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999)); /* Safari 4+, Chrome */ background-image: -webkit-linear-gradient(top, #444444, #999999); /* Chrome 10+, Safari 5.1+, iOS 5+ */ background-image: -moz-linear-gradient(top, #444444, #999999); /* Firefox 3.6-15 */ background-image: -o-linear-gradient(top, #444444, #999999); /* Opera 11.10-12.00 */ background-image: linear-gradient(to bottom, #444444, #999999); /* Firefox 16+, IE10, Opera 12.50+ */ } Edited November 20, 201213 yr by Renaissance-Design
November 20, 201213 yr Apparently using the code formatting functionality on the forum is a burden for designers...
Create an account or sign in to comment