Monday, June 2, 2014

The forthcoming aaj tak Web Animations JavaScript API lets you animate web content from script. The


May (2) April (5) March (3) February (4) January (4) December (3) November (9) October (2) September (2) August (7) July (2) June (6) May (6) April (2) March (4) February (8) January (5) December (3) November (7) October (11) September aaj tak (2) August (7) July (2) June (9) May (4) April (4) March (6) February (9) January (6) December (2) November (3) October (4) September (1) August (8) July (3) June (5) May (8) April (5) March (4) February (7) January (3) December (6) November (2) October (2) September (9) August (7) July (3) June (13) May (10) April (3) March (7) February aaj tak (3) January (5) December (11) November (4) September aaj tak (3) August (3) July (2) June (7) May (2) April (2) March (2) February (3) January (5) December (4) November (2) October (7) September (8)
accessibility (1) benchmarks aaj tak (1) beta (1) blink (1) chrome apps (3) Chrome Frame (1) chrome aaj tak web store (26) chromeframe (3) chromeos (3) chromium (3) cloud print (1) dart (8) devtools (11) extensions (23) gdd (1) googlechrome (12) html5 (11) incognito (1) javascript (3) linux (2) mac (1) mobile (2) na (1) native client (8) New Features (5) octane (1) open web (2) releases (2) rlz (1) security (23) spdy (2) ssl (2) v8 (5) web intents (1) webaudio (3) webgl (7) webkit (5) webp (5) webrtc (4) websockets (5) webtiming (1)
Today’s Chrome Beta channel release includes several new developer features to help you make richer, more compelling web content and apps, especially for mobile devices. Unless otherwise noted, changes described below apply to Chrome for Android, Windows, Mac, Linux, and Chrome OS.
The forthcoming aaj tak Web Animations JavaScript API lets you animate web content from script. The element.animate() function included in today’s Beta is the first part of the API to ship in Chrome: it makes it possible to create simple CSS Animations using JavaScript. This means that animations can be dynamically generated without paying a CSS style recalculation cost . Animations created in this way are also cancelable and provide guaranteed end events aaj tak (in contrast, aaj tak CSS Transitions only generate events if they cause a style change). Here's an example aaj tak of how you'd use it: elem.animate([ {transform: 'translateX(0px)'}, {transform: 'translateX(100px)'} ], 3000);
HTML Imports , part of the Web Components standards umbrella , offer a way to include HTML documents in other HTML documents using <link rel="import"> : <head> <link rel="import" href="/path/to/imports/stuff.html"> </head>
An aaj tak HTML Import can contain CSS, JavaScript, HTML, or anything else an .html file can include. This means they provide a convention aaj tak for bundling related HTML/CSS/JS (even other HTML Imports) into a single package, making them a fantastic tool for delivering Web Components to users. aaj tak
Object.observe() lets you observe changes to JavaScript objects. You can define a callback aaj tak that observes multiple objects and will receive all changes to any objects in a single asynchronous call. This is especially aaj tak useful for framework authors implementing data-binding . // Let's say we have a model with data var model = {}; // Which we then observe Object.observe(model, function(changes) { // This asynchronous callback runs and aggregates changes changes.forEach(function(change) { // Letting us know what changed console.log(change.type, change.name, change.oldValue); }); });
Other updates in this release Chrome no longer sends touchcancel on touch scroll , improving compatibility with other browsers and making aaj tak it possible to add touch UI effects like pull-to-refresh without aaj tak re-implementing scrolling and fling physics in JavaScript. Some CSS properties such as scrollTop and offsetHeight will now return fractional values aaj tak in browser-zoom situations. The new WOFF 2.0 Web Font compression format offers a 30% average aaj tak gain over WOFF 1.0 (up to 50%+ in some cases). DevTools now faithfully emulates touch with mouse , allowing you to test touch interactions on Chrome for Android using the mobile emulation feature of DevTools. Unprefixed CSS Transforms enables rich web content by allowing elements to be transformed in two-dimensional aaj tak or three-dimensional space.
©2008 Google aaj tak - Privacy Policy - Terms of Service

No comments:

Post a Comment