Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged library

Rss Feed Group items tagged

Jochen Burkhard

Ajax library smackdown: Dojo versus YUI - 0 views

  •  
    Summary:  Asynchronous JavaScript and XML (Ajax) is everywhere, from the local newspaper to sites that CEOs surf. Contrary to popular belief, it isn't rocket science, especially with the right library. Explore the popular Yahoo! User Interface (YUI) and Dojo libraries, and learn how they can simplify typical Ajax techniques and make JavaScript easier to work with. Discover why you should use a library in the first place and how to choose among libraries. Get some specific examples from YUI and Dojo, as well.
John Lam

Yahoo! User Interface Library - 0 views

  • The YUI Library is a set of utilities and controls, written in JavaScript, for building richly interactive web applications using techniques such as DOM scripting, DHTML and AJAX. YUI is available under a BSD license and is free for all uses. The YUI project includes the YUI Library and two build-time tools: YUI Compressor (minification) and YUI Doc (documentation engine for JavaScript code).
  •  
    The YUI Library, a set of utilities and controls written in JavaScript for building richly interactive Web applications using techniques such as DOM scripting, DHTML and AJAX, comes under a BSD license, free for all uses. The YUI project includes the YUI Library and two build-time tools: YUI Compressor (minification) and YUI Doc (documentation engine for JavaScript code).
Raja uk

Simple drawing library with jQuery | Ajaxmint.com - 0 views

  •  
    Library for simple drawing with jQuery. draw line,ellipse,pie chart and more art work using this library.
Richard Boss

Basics of RestSharp in Dot Net - 0 views

  •  
    RestSharp is a powerful library for dot net technology. By this article, let us see some of the features and advantages of RestSharp. Day by day, RestSharp is becoming a popular HTTP client library in the Dot Net development industry. For more information, read the article now.
  •  
    RestSharp is a powerful library for dot net technology. By this article, let us see some of the features and advantages of RestSharp. Day by day, RestSharp is becoming a popular HTTP client library in the Dot Net development industry. For more information, read the article now.
Raja uk

Moousture | A mouse gesture library | Ajaxmint.com - 0 views

  •  
    A mouse gesture library written soley in javascript with power and flexiblity to mould itself for you. Implemented on Mootools following the Object Oriented standards. Library is aimed to set out a future framework for mouse guesters for any browser including modern mobile devices.
jdr santos

Raphaël-JavaScript Library - 5 views

  •  
    Raphaël is a small JavaScript library that should simplify your work with vector graphics on the web. If you want to create your own specific chart or image crop and rotate widget, for example, you can achieve it simply and easily with this library.
magecompinc

Magento 2: How Knockout-es5 Library Work - 0 views

  •  
    Knockout-es5 is a plugin by Steve Sanderson to simplify the syntax. Magento 2 provides a knockout js library to make our variable observable and using the advanced functionality of the knockout-es5 library we can make all variables observable in bulk using the tracking method.
mikhail-miguel

Polymath - Convert any music library into a music production sample-library with ML (gi... - 0 views

  •  
    Polymath: Convert any music library into a music production sample-library with ML (github.com).
Kashif Mehmood Mughal

40 Really Useful JavaScript Tutorials with Modren Techniques | Smashing Buzz - 13 views

  •  
    Most of the Web Developers and Designers are using mostly JavaScript as per latest design requirements, because now many modren techniques are available on world wide web, we always follow various web techniques and scripts for best user experience, we sharing most wanted JavaScript Tutorials as per modern web needs. In this article we making another great roundup which fully contained various JavaScript Techniques and trainings. JavaScript libraries helping to help make design and development easier now. We're with some major JavaScript libraries that developers using example: jQuery, Prototype, Scriptaculous, mootools and Dojo.
Kinjal Adesara

Best Free PHP Libraries That Can Make Your Web Development Simpler - 0 views

  •  
    PHP is one of the most widely used web programming languages in the world. Website development is a time-consuming task, but if you are planning to use PHP, you can actually save lots of time. There are several PHP libraries out there that can simplify your work process and reduce chances of any coding error during website development.
Vladimir Carrer

Better Web Readability Project - CSS Library - 0 views

  •  
    The main purpose of this project is to contribute to better reading experience on the screen by using CSS typography library.
vlado

Azbuka - CSS Typographical Base Rendering Library - 0 views

  •  
    Azbuka is CSS Typographical Base Rendering Library.It's meant to make meaningful web typography based on the golden proportion.
anonymous

14 Popular JavaScript Libraries for Data Visualization in 2019 - 0 views

  •  
    Data vizualization is as important to a JS developer as making interactive web pages. Sometimes it might be hard to choose from multiple libraries for creating beautiful charts for the Web. To make things easier, we listed 14 best Javascript libraries for data vizualization.
magecompinc

Team MageComp Aka Mavengers Shared Work from Home Tips on how to Stay Productive! - 0 views

  •  
    Knockout-es5 is a plugin by Steve Sanderson to simplify the syntax. Magento 2 provides a knockout js library to make our variable observable and using the advanced functionality of the knockout-es5 library we can make all variables observable in bulk using the tracking method.
Poonam Soni

Best Angular Libraries to Boost Your Development in 2023 - 0 views

  •  
    Optimize your Angular web development in 2023 with top libraries and services to enhance performance and application quality.
Vernon Fowler

@font-face gotchas « Paul Irish - 1 views

  • There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well.
  • And.. regarding @font-face syntax I now recommend the bulletproof smiley variation over the original bulletproof syntax.
  • @font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot'); src: local('?'), url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype'); }
  • ...5 more annotations...
  • in Webkit (Chrome/Safari), applying font-weight:bold to faux-bold some @font-face'd text will not succeed. Same applies for font-style:italic.
  • text-transform doesn't play well with @font-face in current implementations.
  • @font-face doesnt play nice with css transitions.
  • If a @font-face declaration is within a media query @media screen { ..., it will fail in Firefox.
  • SVG Fonts - Currently SVG is the only way to get webfonts working on iPhone and iPad.
  •  
    "There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well. "
tubagus99

Open MySQL UDF & Plugin Library - (How to Compile) - 0 views

  •  
    "MySQL UDF Library (How to Compile)"
htmlslicemate.com

Creating a Multi-Page Site with Meteor - 0 views

  •  
    Whenever I have to develop a specific and focused library like this, I like to start with the outcome of, how do I want this to work? So, we can begin by writing down some of the features that we'd like it to have: The ability to load different pages according to the URI Reading parameters from the URI (placeholders) Keeping the pages dynamic as per the Meteor standard That looks pretty good. Now after looking over these features, you may think they are pretty similar to a 'router' type of library and I agree. So, let's take a look at how our 'router' library would work in action:
Nicolas Casel

Javascript library to show and hide things - 0 views

  •  
    "minimal 4kb library for showing & hiding things"
1 - 20 of 222 Next › Last »
Showing 20 items per page