Skip to main content

Home/ centreforelearning/ Group items tagged html5

Rss Feed Group items tagged

bernard tan

HTML5 video player comparison - 3 views

  •  
    Cant decide which HTML5 video-based player to choose for your web project? Look here now!!
bernard tan

Exporting Images from Canvas Tag HTML5 - 1 views

  • Exporting & Saving One thing that SVG can’t do is save the resulting image as a bitmap. It’s easy for <canvas> because the element is already a bitmap in the first place! The canvas can export its image to a data URL (e.g., data:image/png;base64,iVBORw0KGg...). This data may then be rendered in the browser, which could then be saved or dragged to the desktop, used in a new canvas, and so on. The browser must support PNG images, and it may have varying support for GIF and JPG. For our example, we’ll stick with PNG since it supports alpha transparency, and where we haven’t drawn on the canvas, it’ll be transparent. To get the data URL, we simply call canvas.toDataURL('image/png'). Note that we’re calling toDataURL() on the <canvas> element, not on the 2D context. This is because we’re getting all the pixels in the canvas, not just the pixels in a particular context. So taking the example we’ve put together already, we’ll make the browser redirect to a PNG version of the image when a user clicks on the <canvas> element (a contrived example, I know!): canvas.onclick = function () {  window.location = canvas.toDataURL('image/png');};
  •  
    I am sharing of export images from web app specially to Eve and Sham, maybe useful for our harmonia project. This is the workflow i was mentioning on exporting the contents of the new html5 tag canvas to an jpeg or png and it opens in a browser, which then can be save or be used for other things, we could also explore on other options of sending the image directly to other applications. http://jsbin.com/abagi3/5/ Above url is a live prototype and you can actually view source to see how easily it is being done. :)
Eveleen Er

Adobe Releases Flash to HTML5 Conversion Tool - 0 views

  • Today Adobe is launching an experimental Flash-to-HTML5 conversion tool called Wallaby. The tool takes content created with Adobe's Flash Professional and converts it to HTML5
  • Wallaby
Ashley Tan

Singaporean-Finnish Startup Nonstop Games Raises $2.9M For Core Gaming On iOS, Android ... - 1 views

  •  
    A perspective on not using HTML5 for game devt by a Finnish-Singapore company.
yeuann

Google launches public beta of Web Designer, a free design tool for creating HTML5 ads ... - 1 views

  •  
    Sweet! Maybe our MDs can take a look at this? :)
Kartini Ishak

The Bright (Near) Future of CSS - Smashing Magazine - 1 views

  • Styling HTML 5 is really no different than styling HTML 4. There are a bunch of new elements, but styling them is basically the same as styling any other element. They generate the same boxes as any other div, span, h2, a, or what have you.
  • The HTML 5 specification is still being worked on as of this writing, so this may change a bit over time, but the following declarations may be of use to older browsers that don’t know quite what to do with the new elements.
  •  
    Tips on HTML5 codings. 
Kartini Ishak

Mobile Learning Studio | Rapid Intake - 1 views

  •  
    nyone will be able to create and deploy mobile learning content with our easy-to-use mLearning Studio; choose templates, add text, images, audio, video and quizzes, then publish. The content is delivered in a fully HTML5 compatible mobile course player with cross-platform support for iPhone, iPad, and Android (2.2 and higher); support for Blackberry coming soon.
  •  
    Announcing the first tool to deploy your rapid e-learning content in HTML5 format as well as Flash. 
Shamini Thilarajah

Disney acquires gaming engine startup to build HTML5 games outside of App stores - 0 views

  •  
    "Google Docs for making games"
Eveleen Er

How HTML5 Will Transform the Online Video Landscape - 0 views

  •  
    Watch the video on "3 Dreams of black". Impressive WebGL technology for the web.
bernard tan

8 jQuery Optimization Tips and Tricks - Hungred Dot Com - 0 views

  •  
    found out using jquery reduce performance on iphone greatly. Use jquery sparsely. if you are using jquery library for your html5 mobile app. this is going to help big time.
Eveleen Er

Mobile Firefox Skips Flash In Favor Of HTML5 - 0 views

  • The mobile browser syncs all of your bookmarks, browsing history, passwords, and even open tabs with your Firefox browser on your desktop. So you can pick up browsing where you left off when you leave your desk.
Ashley Tan

appFlash Uses Google Swiffy to Build iOS Apps - 1 views

  • Shortly after Google unveiled Swiffy, the Flash-to-HTML5 conversion tool designed for WebKit browsers, mobile app development firm appMobi launched a related utility called appFlash. This new tool takes advantage of Swiffy's capabilities, allowing mobile developers to convert app assets coded in Flash into native iOS applications.
Ashley Tan

New MobiUs Browser For iOS Makes Mobile Web Apps Act More Like Native Apps | TechCrunch - 2 views

  • Although HTML5 can already tap into some of a smartphone’s sensors, like the GPS and accelerometer, for example, appMobi’s MobiUs Web App Browser will go beyond HTML5′s current capabilities to provide access the smartphone’s camera, the ability to scan QR codes and barcodes, support for augmented reality, accelerated graphics, the ability to lock the rotation of the device and more.
‹ Previous 21 - 40 of 85 Next › Last »
Showing 20 items per page