How to Efficiently Develop Apps for iOS and Android? Programming Software Development by faisalsaraj … both platforms. Focusing on adaptive design principles can further enhance usability and performance. What are your thoughts on best practices for… Re: What’s the Biggest Web Design Mistake You’ve Made? Programming Web Development by Dani Usability trumps aesthetics. Always use a large, readable font size with a high contrast between the font and the background. Re: How to Efficiently Develop Apps for iOS and Android? Programming Software Development by rproffitt We stopped making apps and moved back to web pages tuned to mobile users. Part of the reason was Apple's draconian and costly app system. Put on the web and we're done. No dedicating a person to shepherd the app through the Apple gauntlet. Re: How to Efficiently Develop Apps for iOS and Android? Programming Software Development by gorgebutler Developing apps for iOS and Android efficiently requires the right strategy and tools. Using cross-platform frameworks like Flutter or React Native helps save time and effort by allowing developers to write a single code base for both platforms. Optimizing performance, focusing on user-friendly design, and following platform-specific guidelines … Re: How to Efficiently Develop Apps for iOS and Android? Programming Software Development by Reverend Jim >Part of the reason... I, for one, am sick and tired of every Tom, Dick, and Harry requiring a separate app for everything. It has gotten to the point of having to scroll through pages of icons to locate whatever app you need for a particular occasion. Plus, every app stays open consuming limited memory. And then there are the constant … Re: How to Efficiently Develop Apps for iOS and Android? Programming Software Development by Olu_610 The adoption of cross-platform frameworks like React Native or Flutter brings me full support for creating applications which operate across iOS and Android platforms. Re: usability issue to fix with javascript/jquery Programming Web Development by Violet_82 … I don't add that button I could create some usability issues because users with small screens (like the one I… dilemma: forget about the next button and leave that little usability issue unresolved or use a jquery plug in, solve the… usability issue but not being able to prove that I have … Re: usability issue to fix with javascript/jquery Programming Web Development by Airshow … I don't add that button I could create some usability issues because users with small screens (like the one I… dilemma: forget about the next button and leave that little usability issue unresolved or use a jquery plug in, solve the… usability issue but not being able to prove that I have … Tutorials for Web Site Usability Digital Media UI / UX Design by Webnauts … BROKEN LINKS OR LINKS WITH MISLEADING INFORMATION![/b] - Professional Website Usability: [url]http://www.sitepoint.com/article/223[/url] - Jesset… for optimal web design (designing for usability): [url]http://psychology.wichita.edu/optimalweb/[/url] - Conducting Usability Research With Computer Users Who Are… Mixed signals about mobile usability Digital Media Digital Marketing Search Engine Strategies by Dani … all know, Google is going to start factoring in mobile usability into their algorithm later this month. Over the past few…, Google Webmaster Tools started showing an increasing number of mobile usability issues (first 124 earlier this week, and now 268 pages… Integrated Development Environment (IDE) Usability Survey Programming Computer Science by rbkline … VisualAge, or Microsoft Visual Studio. Of special interest is the usability of IDEs as described by software development professionals. The URL… My MSc research - Usability research for password management for online websites Digital Media UI / UX Design by Crocodile3 Hi all I am conducting a usability research for my MSc dissertation. If you could spare a … usability issue to fix with javascript/jquery Programming Web Development by Violet_82 Hi peeps, I wonder if anybody can give me a hand with this. Basically on my website [url]http://antobbo.webspace.virginmedia.com/photography/testing/gloom.htm[/url] to view a picture you need to use the left hand-side menu. Now, all good except that when you want to view any picture at the bottom of the left hadn-side nav you need to scroll all … Re: usability issue to fix with javascript/jquery Programming Web Development by Airshow Hi Violet, There's no point driving yourself nuts writing something like this. Slideshows is one area that is seriously well supported with jQuery plugins, most of which would do the job far better than you or I could ever achieve in a reasonable timescale. I just googled "jquery slideshow plugin" and found these review pages (I'… Re: usability issue to fix with javascript/jquery Programming Web Development by floatingDivs Hi Violet82, This should be what you're looking for. [CODE] // load images var mainPictures = ["images/gloom_full_1.jpg", "images/gloom_full_2.jpg", ... "images/gloom_full_27.jpg" ]; var thumbPictures = ["images/gloom_thumb_1.jpg", ... "images/gloom_thumb_27.jpg"]; var thumbShadedPictures … Re: usability issue to fix with javascript/jquery Programming Web Development by Violet_82 Hi floatingDivs, thanks for that, I had a look earlier on and yes the code works (this afternoon I had the impression that it wasn't working on my small laptop - sometimes it is a bit temperamental which is probably why). I had a good look at your code and I didn't know that I could use variables outside the function, I thought that everything … Re: usability issue to fix with javascript/jquery Programming Web Development by floatingDivs An array starts at 0, not 1. So, you need to calculate from 0 to whatever the last element in your array is (you actually don't...read below to find out how to save yourself time). Even though the image is [B]gloom_full_27.jpg[/B], the array index is 26. Remember, [B]gloom_full_1.jpg[/B] is located at element 0, not element 1. So, what the … Re: usability issue to fix with javascript/jquery Programming Web Development by Violet_82 Hi floatingDivs, thanks for the explanation, yes it makes sense, I should have thought about the out of bound problem. I replaced the if statement with the suggested one although it still doesn't work, when I get to the end of the pictures it skips the first picture (it's like the picture is missing, there is just the black background) and when I … Re: usability issue to fix with javascript/jquery Programming Web Development by Airshow Violet, For the record, I struggled to keep it down to my predicted 20 lines, but eventually managed to squeeze everything into 19, including both Next and [COLOR="Green"]Prev[/COLOR] buttons. For readability, I would normally choose not to squeeze quite this far. [CODE=javaScript] $(function(){ var current = -1; var $thumbs = … Re: usability issue to fix with javascript/jquery Programming Web Development by floatingDivs Appears to work for me now. [CODE] function nextPicture() { currentImage = currentImage + 1; if(currentImage < mainPictures.length) { $("#pic_1").fadeOut(2000, function() { $(this).attr("src",mainPictures[currentImage]).fadeIn(2000); }); } else { currentImage = 0; $("#pic_1&… Re: usability issue to fix with javascript/jquery Programming Web Development by Violet_82 HifloatingDivs, thanks for that but I had to remove the alert box in some browsers (chrome, safari, opera) comes up everytime I click on the next button. If I remove it it is ok although the first picture doesn't fade in smoothly, but it is fine, thanks for all your help @Airshow Wow Airshow, that is amazing, thanks for posting that. It is a … Re: usability issue to fix with javascript/jquery Programming Web Development by Airshow Violet, [QUOTE=Violet_82;1617072]@Airshow Wow Airshow, that is amazing, thanks for posting that. It is a little bit too advanced for me but I definitely want to give it a try to understand it first and then try it on the site. I spent sometime studying it, googling (actually w3c schooling) but many things are still unclear. Would you mind if I … Re: usability issue to fix with javascript/jquery Programming Web Development by Airshow I'm off to the kitchen now. Cantaloupe melon has been ripening for 5 days, out of the fridge, and I judge it's about ready. [B]Airshow[/B] Re: usability issue to fix with javascript/jquery Programming Web Development by Violet_82 Thanks for your patience Airshow, that's great. I managed to get hold od a copy of the jquery book as well as the javascript pocket reference, it's pretty good. I will try your code on my test site. Hope you enjoyed your melon : -) @floatingDivs, thanks for your help too much appreciated! Re: Tutorials for Web Site Usability Digital Media UI / UX Design by DaveSW Webnauts! Fancy seeing you here! Just when I thought I had this place to myself... :D Re: Tutorials for Web Site Usability Digital Media UI / UX Design by Webnauts [QUOTE=DaveSW]Webnauts! Fancy seeing you here! Just when I thought I had this place to myself... :D[/QUOTE] Oh, sorry for that Dave. I still can go if you want. LOL Re: Tutorials for Web Site Usability Digital Media UI / UX Design by DaveSW LOL as if Re: Mixed signals about mobile usability Digital Media Digital Marketing Search Engine Strategies by rtrethewey It sounds like a data glitch in WMT, which is not a terribly unusual occurance. Check the 'Last Detected' dates shown for the individual errors and I bet they're reports from crawls done months ago. It seems to me that Google hasn't quite gotten a crawl schedule worked out for Googlebot Mobile that increases the crawl rate for pages that show … Re: Mixed signals about mobile usability Digital Media Digital Marketing Search Engine Strategies by Dani > Check the 'Last Detected' dates shown for the individual errors and I bet they're reports from crawls done months ago. No, the dates indicate within the past week. Meanwhile, we've been mobile friendly for well over a year. No changes to our responsive CSS anytime recently. Re: Mixed signals about mobile usability Digital Media Digital Marketing Search Engine Strategies by danielmav Even We have got the same message from Google webmaster related to mobile friendly of our website. Our website is mobile friendly too. I guess this is the general message Google has sent to each webmaster.