current location:Home > Technical Articles > Web Front-end
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Introducing GSS: Grid Style Sheets
- You may have recently heard of Grid Style Sheets (GSS) in the world of HTML and CSS. GSS re-imagines CSS layout and replaces the browser’s layout engine with one that harnesses the Cassowary Constraint Solver. Those of you who didn’t understand a wor
- CSS Tutorial 189 2025-02-23 09:26:10
-
- 4 jQuery On Screen Keyboards
- Several jQuery-based on-screen keyboard examples are showcased below. These are useful for touchscreen devices or situations where a physical keyboard is unavailable. jQuery On-Screen Keyboard: A basic, jQuery-powered on-screen keyboard. Source
- JS Tutorial 690 2025-02-23 09:25:09
-
- scroll 4 helper code snippets
- I've been using the iScroll 4 plugin and it's very nice. I use it to implement touch-friendly scrollbars – a great plugin. If I have time, I will write an extension API for it and write some demos (if the interest is big enough). But now, here are some code snippets. // Settings of the following code snippet var scrollName = 'myScroll', scrollDuration = 1000, scrollAmount = 200; Set scrolling with a scroll end callback function. // Set scrolling with scroll end callback function window[scrollNam
- JS Tutorial 205 2025-02-23 09:24:11
-
- jQuery Custom Validation Rule - fieldPresent
- This tutorial demonstrates how to create custom validation rules for your forms using the jQuery.validate.js plugin, expanding upon a previous guide on setting up form validation. We'll leverage the $.validator.addMethod() function to define these r
- JS Tutorial 679 2025-02-23 09:23:09
-
- Logo Arena - Crowdsource Your Logo Design To Get Best
- LogoArena: Your Global Marketplace for Stunning Logo Designs Imagine a brand without a logo – unthinkable! A strong logo is crucial for brand identity and recognition. LogoArena connects you with talented designers worldwide to create the perfect l
- JS Tutorial 445 2025-02-23 09:21:09
-
- Common Techniques in Responsive Web Design
- This article explores effective techniques for creating responsive website layouts and user experiences. We'll examine methods for building fluid grids that adapt to various screen sizes, ensuring consistent user experiences across devices. We'll a
- JS Tutorial 215 2025-02-23 09:20:10
-
- jQuery Speed Test: $(this).attr('id'); vs this.id
- Leading on from Speed Test $(this) vs .get() vs .eq() I decided to do a quick test to compare the speed of $(this).attr(“id”); vs this.id which can be used on native attributes such as id, src, href, style etc… but not on properties such as bgcolor,
- JS Tutorial 249 2025-02-23 09:19:10
-
- My Current HTML Email Development Workflow
- HTML Email Development Workflow: A Practical Guide to Improve Efficiency Each web developer has his own unique way of working: preferred editors, auxiliary tools, personal project processes, and more. For large or complex projects, a clear development path is crucial, which saves time and minimizes errors. This is especially important in HTML email projects in my experience. Email requires a lot of repetitive tasks that are not particularly complex in themselves (at least not always), but can become tricky due to the large number of elements and tasks that need to be checked. Here I will try to explain my personal HTML email development workflow. I hope you can pick out the sections you like from them. Key Points Author Qiang
- CSS Tutorial 616 2025-02-23 09:18:13
-
- Capture iPad orientation change
- This code demonstrates how to capture changes in screen orientation on iPad devices and apply different styles according to the orientation. The code is implemented by adding class names to HTML tags, similar to libraries such as Modernizr, and uses CSS3 media queries to achieve style switching. jQuery(document).ready(function($) { // Capture changes in iPad device direction function doOnOrientationChange() { switch (window.orientation) { case -90: case 90:
- JS Tutorial 749 2025-02-23 09:17:38
-
- jQuery refresh page on browser resize
- Use JavaScript to refresh the basic code snippet of the browser's resized page. // Refresh the page when the browser is resized $(window).bind('resize', function(e) { console.log('Window size has been resized..'); this.location.reload(false); /* false Get page from cache */ /* true Get page from server */ }); If window.location.reload() does not work in Firefox, try the following: //
- JS Tutorial 222 2025-02-23 09:16:09
-
- JavaScript Snippet Force a DOM Element Redraw/Repaint
- JavaScript code snippet to force a DOM element redraw/repaint. A bit hacky but useful as a last resort. var element = document.getElementById('id'); var n = document.createTextNode(' '); var disp = element.style.display; // don't worry about previo
- JS Tutorial 274 2025-02-23 09:15:12
-
- Multilingual Preprocessing with Prepros
- Prepros: Streamlining Multilingual Web Development Preprocessing Prepros is a free, open-source, and powerful tool designed to simplify the complexities of multilingual preprocessing in web development. Supporting a wide array of languages including
- JS Tutorial 256 2025-02-23 09:14:11
-
- 5 JS Random Moving Bubbles Effects
- These 5 JS Random Moving Bubble Effects display cool animated “bubble” effects with few lines of code in JavaScript/jQuery. Check them out! 1. JS Bubble Effect #1 JS Bubble Effect 1 SourceDemo 2. JS Bubble Effect #2 JS Bubble Effect #2 Source
- JS Tutorial 418 2025-02-23 09:13:08
-
- An Introduction to CSS's @supports Rule (Feature Queries)
- Key Takeaways The @supports rule in CSS allows developers to implement feature detection, checking if a browser supports certain CSS property/value pairs and applying styles accordingly. This is part of a progressive enhancement approach to handle
- CSS Tutorial 320 2025-02-23 09:11:09
-
- jQuery Speed Test: $(this) vs .get() vs .eq()
- Each loop cache performance – test to see if grabbing the current element from inside the each is possible/faster from a cached array of elements. Namely $(this) vs .get() vs .eq() with .text() and textContent/innerText . Tests run with jQuery 1.9.1.
- JS Tutorial 673 2025-02-23 09:09:09