Front-end Basic Learning-Three Realizations of Text Color Gradient in css

In the process of web front-end development, UI designers often design some design drawings with gradient text. In the past, we can only use png pictures to replace text. Today, we can use pure CSS to realize gradient text. Here is how to implement 3 for your reference! Basic Style: .gradient-text{text-align: left;text-indent:30px;line-height: ...

Posted by ThinkGeekness on Fri, 19 Apr 2019 10:42:33 -0700

Reconstructing a jquery-based project based on angular Js

Preface All the projects in the company are based on jQuery library. Seriously, jQuery is really the Opium in scripts. Once it happens, it's really hard to quit. When I was studying in school, I didn't know much about the big js plug-ins outside. Native scripting almost immediately uses jquery. As a result, I am lazy to write scripts natively ...

Posted by gregzor on Thu, 18 Apr 2019 16:30:33 -0700

Spring MVC implements json interaction-requestBody and responseBody

json data interaction1. Why json data interactionjson data format is commonly used in interface calls and html pages. json format is relatively simple and easy to parse.For example: web service interface, transmission of json data.2. Spring MVC for json interaction(1) Request json, output json, request is JSON string, so it is not convenient to ...

Posted by flash_78 on Thu, 18 Apr 2019 14:45:34 -0700

Bootstrap modal box and form validation bootstrap-validator

Recently, in order to make the pages more concise and beautiful, bootstrap has been introduced. It has to be said that bootstrap encapsulates a lot of things. It is very convenient to use. In the process of development, I mainly applied modal box and form verification. It feels good. I want to record the memo and share it with you at the same t ...

Posted by isaac_cm on Thu, 18 Apr 2019 10:03:34 -0700

jQuery EasyUI Details - EasyUI Form Loads Memory/Local/Server Data

What if we want to put data into a form without using the front-end language JS (jQuery and other front-end frameworks are essentially JS)? For example, from the file, from the database to find user information displayed in the form. With the help of back-end languages such as Java, and then through the Servlet to obtain data, the browser sid ...

Posted by guitarist809 on Thu, 18 Apr 2019 00:09:33 -0700

jquery paging display control kkpager uses

This demo will explain two ways:1: link mode (setting a tag link address with different parameters: < a href = "xxxx. html? Current = 3"> 3 </a>; current: current: current page number)Second: click mode (custom function jump, ajax mode, by clicking the event to send ajax requests to obtain data. ajax paging) ============== ...

Posted by sleepingdanny on Wed, 17 Apr 2019 09:39:32 -0700

Analysis of CSS and JS Reference Relations in Meetup Rails, Shenzhen, 2010-305

Novice on the road, if there are any mistakes, please remind me in time Analysis of CSS and JS Reference Relations in Rails I. Rails Static File Storage Location You can put it in three places: app / assets, lib/assets, or vendor/assets. At present, app/assets directory is mainly used. app/assets: Stores static resources of programs, such ...

Posted by skicrud on Wed, 17 Apr 2019 03:30:34 -0700

JQ animation function

JQ animation function //Set a single style: CSS (attribute, attribute value); - - js sets style through style attribute //Add class name: addClass("class name") //Remove the class name: removeClass("class name") //Determine whether this class name exists: hasClass("class name") //Switching class: ...

Posted by therealairness on Tue, 16 Apr 2019 22:42:33 -0700

The difference between filter() and find() and has() in jQuery

filter(), find(), has() are three commonly used functions in jquery. Their usage and effect are quite different. For beginners, it is often unclear. For the usage of the three functions, explain briefly. filter() method - filter() filters the DOM element wrapper set by manipulating the current element set, deleting mismatched elements, and ...

Posted by ferronrsmith on Tue, 16 Apr 2019 21:12:34 -0700

How to Understand the ajaxSubmit Method in jQuery

Copyright Statement: This is an original blogger's article, reproduced at www.cnblogs.com/gdsblog Just learned, used Ajax Submit, hesitated before not touching this, so it was a face of confusion at first, and finally through the way of searching for information, to solve this problem is very exciting, so that the page uploaded pictures without ...

Posted by SueHubert on Tue, 16 Apr 2019 14:00:32 -0700