Skip to main content

Home/ centreforelearning/ Group items tagged browser

Rss Feed Group items tagged

Sally Loan

Test Your Website In Multiple Browsers For Free With Browserling - 0 views

shared by Sally Loan on 03 Dec 10 - No Cached
  •  
    Browserling is a new web service built upon the StackVM framework which allows virtual instances of operations systems to run right in your browser. Within this framework, they allow users to launch a number of browsers to test out their websites right in your browser. As of this writing they have support for Internet Explorer 5.5, 6, 7, 8 and 9, Firefox 3.5, Chrome 7, Opera 10.6 and Safari 5.0.
casey ng

Google Body Browser - 0 views

  •  
    Google just launched Body Browser that let you explore the human body just like you explore the world with Google Earth.But, you need a browser that support WeBGL like Firefox4 beta and Google Chrome Beta. See the unofficial blog for Body Browser http://googlesystem.blogspot.com/2010/12/google-body-browser.html. I have it tried it out.Impressive but not stable in some PC. Excellent tool for teaching staff in sport science, and biology.
  •  
    This is cool, will PESS folks be interested?
  •  
    Yes, will be introducing to them since it is relevant to them.
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. :)
bernard tan

Coding JavaScript for Mobile Browsers (part 6) - Microsoft Certification Examples, exer... - 0 views

  • In mobile browsers, you need to be especially careful about using timers because of the battery consumption. If you need to use many high-frequency timers at the same time, try to manage them using only one timer that will launch different behaviors from the same process.
  • The first question we need to ask ourselves is, what happens when our web page goes to the background because the user switches focus to another application (in multitasking operating systems) or opens or browses to another tab or window? Another problem is what happens when the phone goes to sleep (because of the user’s inactivity while the script is executing). The behavior of timers can be a little tricky in these situations.Yet another problem is that timers execute on the same thread as the main script. If our script is taking too much processor time (a normal situation with large scripts on low- and mid-end devices), our timers will be delayed until some spare execution time is found.If we use a low frequency for the timer (for example, 10 milliseconds), the timer will generally have problems meeting the timetable.Remember that the JavaScript execution time depends a lot on the device hardware and the browser’s engine. Even if they’re running the same operating system, like Android, execution times can differ: for example, an HTC G1 will be much slower than a Nexus One with a 1-Ghz processor.
  • As shown in Figure 4, the real times are very different on different devices. On low- and mid-end devices, if they work at all, the result is far from our 200 ms intention—some low-end devices don’t even accept timers with a frequency of less than 1 second.
  • ...1 more annotation...
  • Table 11. Timers support compatibility tableBrowser/platformTimers availableTimers in backgroundSafariYesStopped. From iOS 4.0: continue working while in other browser's window.Android browserYesStopped.Symbian/S60YesStopped. From 2.2: continue working while in other browser's window.Nokia Series 40No webOSYesContinue working.BlackBerryNo NetFrontYesNo multitasking.Internet ExplorerYesStopped.Motorola Internet BrowserNo Opera MobileYesContinue working.Opera MiniNo Note:The Gmail for Mobile team discovered some issues with timer behavior on mobile Safari and Android devices, and made the results public in the team blog at http://www.mobilexweb.com/go/timers. The conclusions are: for low-frequency timers (1 second or more), there are no performance issues, and you can add as many as you want; for high-frequency timers (for example, 100 ms), though, every new timer created makes the UI more sluggish. The preferred solution is to use only one high-frequency timer.
  •  
    Creating real time app might pose to be an issue on web app.
casey ng

New web browser - 1 views

  •  
    The founder of the Netscape browser is launching a new web browser that promise a new way of surfing the internet by integrating social networking working tool.
bernard tan

web app audio plays in background mobile safari - 2 views

  •  
    I realized sound effects works well on my desktop browser but was disabled my mobile safari. Take note that audio tag has been crippled and disabled by apple on their iphone browsers, meaning they closed a big possibility of webapp development with Audio! We might have to look into other solution for Harmonia. This webapp demo shows some get around and music playing in the background when you do other things. This
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.
Ashley Tan

Adobe Releases Its Own HTML5 Video Player | Epicenter | Wired.com - 2 views

  • Adobe has released an embeddable video player that plays HTML5 native video in browsers that support it, and falls back to Flash in browsers that don’t. It’s cross-browser and cross-platform, so it works on iPhones, iPads and other devices that don’t support Flash. Using Adobe’s new player, these devices can show videos in web pages without the Flash plug-in.
bernard tan

IE9 tops Chrome, Firefox in HTML5 compatibility - 0 views

  • "Interoperability is important to Web designers," the W3C said in releasing the results. "Good test suites drive interoperability. They're a key part of making sure Web standards are implemented correctly and consistently
    • bernard tan
       
      True. I personally feel it is very important to cater to your desired audience and not risk our audience missing certain fuctions or informations in the website.
  • Internet Explorer 9 has topped all other browsers in conforming with the HTML5 specification, including Google Chrome and Firefox,
  • W3C pitted the just-released version of IE9's developer platform preview against Chrome, Firefox, Opera and Safari, evaluating the five browsers in dozens of tests across seven categories of features
  • ...2 more annotations...
  • IE9 scored 100% in five of the seven categories, including audio, video and XHTML5. Chrome scored 100% in four categories, whereas Firefox and Opera scored 100% in three categories and Safari did so in only two
  • despite excitement over HTML5, the specification may not be ready for prime time. A W3C official recently said it's too early for Web sites to deploy HTML5 because of interoperability issues.  
rahim azhar

Miren Browses the Web In Hyper Speed on Android - 0 views

  • Miren Browser is a super quick, lightweight web browser that packs some serious browsing speed on both Android phones and tablets. With its minimalistic layout in full screen mode, it leaves you with an uninhibited view of your websites and rss feeds.
Obi-Wan Fareed

Bb Stats - 1 views

  •  
    It is a building block plugin for Blackboard Learn LMS which provides statistical and analytical data about the system. The software reports live activity data and creates historical graphs. The reports are available through the browser or via mobile app on the iPhone and Android.
  •  
    Do we have this? Does Lum know?
Sally Loan

Adobe Shadow unveiled - 0 views

  •  
    Adobe Shadow allows web pros to easily control, view and inspect web content on multiple devices via the browser. 
bernard tan

User Expectations with Mobile Apps - 0 views

  •  
    mobile application design that developers should keep in mind: Users will not tolerate mobile apps that are perceived as slow to open or operate. Speed is even more important for apps than it is for websites on a computer. Users are often accessing these apps when they have only a few minutes of downtime, and so speed is paramount. Apps do not allow multi-tasking the way that browsers on a computer do, so users require instant gratification. Simplicity of functionality and organization are key to good mobile app design. Mobile apps should be linear in design-this is distinct from a typical website approach that offers multiple paths and options. Apps present you with menus, you do what you need to do, and you move out. Mobile app users do not want to be overwhelmed by too many choices and distractions when they are trying to access a feature. People want fewer choices in mobile, because if you put too many choices in mobile, users will give up.
  •  
    Nice read on mobile userability on the whole page. Advises and consideration into the UX experience before even jumping into development. one of the key to quality experience for our app users.
Eveleen Er

It's Official: Flash Mobile Player is Dead - 2 views

  • We will no longer continue to develop Flash Player in the browser to work with new mobile device configurations (chipset, browser, OS version, etc.) following the upcoming release of Flash Player 11.1 for Android and BlackBerry PlayBook
Ashley Tan

Google's Official Chat Extension Frees Chat from Your Browser Tabs, Lets You Start IMs ... - 0 views

  •  
    For those involved in the leadership development project, this recent development is something that might favour Google Sites as the platform of choice.
Eveleen Er

Start (Web to PDF + Browser) for iPad on the iTunes App Store - 2 views

  •  
    Start for iPad is free today only. Convert web pages to PDF & open in other apps like PaperPort Notes
  •  
    Very nice find. It's a useful app if you don't have a laptop or desktop with you.
1 - 20 of 62 Next › Last »
Showing 20 items per page