CN109002282B - Method and device for realizing animation effect in web page development - Google Patents

Method and device for realizing animation effect in web page development Download PDF

Info

Publication number
CN109002282B
CN109002282B CN201810834301.2A CN201810834301A CN109002282B CN 109002282 B CN109002282 B CN 109002282B CN 201810834301 A CN201810834301 A CN 201810834301A CN 109002282 B CN109002282 B CN 109002282B
Authority
CN
China
Prior art keywords
animation
time
array
triggered
ending
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201810834301.2A
Other languages
Chinese (zh)
Other versions
CN109002282A (en
Inventor
沈度先
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
JD Digital Technology Holdings Co Ltd
Jingdong Technology Holding Co Ltd
Original Assignee
JD Digital Technology Holdings Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by JD Digital Technology Holdings Co Ltd filed Critical JD Digital Technology Holdings Co Ltd
Priority to CN201810834301.2A priority Critical patent/CN109002282B/en
Publication of CN109002282A publication Critical patent/CN109002282A/en
Application granted granted Critical
Publication of CN109002282B publication Critical patent/CN109002282B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/20Software design
    • G06F8/24Object-oriented
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/451Execution arrangements for user interfaces

Abstract

The invention discloses a method and a device for realizing animation effect in web page development, and relates to the technical field of computers. One embodiment of the method comprises: analyzing the animation description object, and acquiring an array of time shaft starting time and an array of animation ending time; when each frame of time axis event is triggered, judging whether a time point same as a time axis starting time array or an animation ending time array exists or not; and executing corresponding operation on the specified elements in the animation element group according to the judgment result. According to the embodiment, the animation description of the animation element group is abstracted, so that the animation element can be described in JS through convenient and quick reading configuration without description in css styles, and the development efficiency is greatly improved.

Description

Method and device for realizing animation effect in web page development
Technical Field
The invention relates to the technical field of computers, in particular to a method and a device for realizing animation effect in web page development.
Background
In the development of web pages, a dynamic effect on each page is indispensable, and it is a very common appeal that a plurality of elements are combined together to realize a complex animation effect, and currently, a more common method for realizing the animation effect includes:
(1) adding a class type (class) to each element needing animation effect in a DOM (Document Object Model) layout page, and performing Style writing in a css (Cascading Style Sheets) Style sheet through css3 (an upgraded version of css);
(2) and editing codes of animation effects through the canvas.
In the process of implementing the invention, the inventor finds that at least the following problems exist in the prior art:
first, writing a css3 style sheet requires independently writing an animation (animation) style for an animation for each element object in a set of animation elements. When the animation needs to adjust time, the styles of a group of animation elements need to be edited one by one, so that time waste is caused, and errors are easy to occur.
Secondly, editing through canvas is inconvenient to integrate into a visual editor, each animation element is difficult to edit visually, the positioning of each animation element needs to be edited through a third-party tool, and the use cost is high.
Disclosure of Invention
In view of this, embodiments of the present invention provide a method and an apparatus for implementing an animation effect in web page development, which enable an animation element to be described in js (javascript) by abstracting an animation description of a group of animation elements, and do not need to describe in a css style, so as to greatly improve development efficiency.
To achieve the above object, according to an aspect of an embodiment of the present invention, there is provided a method of implementing an animation effect in web page development.
The method for realizing the animation effect in the web page development according to the embodiment of the invention comprises the following steps:
analyzing the animation description object, and acquiring an array of time shaft starting time and an array of animation ending time;
judging whether a time point same as the time axis starting time array or the animation ending time array exists or not when each frame of time axis event is triggered;
when the time point same as the array of the time shaft starting time or the array of the animation ending time exists, entering triggering logic;
when the animation execution logic is triggered, setting an animation type and a duration style of the animation for the specified element, and when the animation ending logic is triggered, removing the animation type of the specified element.
Optionally, the timeline implements a custom frame rate per second via a timer or a request animation framework.
Optionally, the animation description object records animation styles which the animation element groups need to execute in sequence.
Optionally, each element in the animation element group is marked with a unique flag or class type;
and obtaining the element unique mark or the element class type through an application programming interface in the JS.
According to another aspect of the embodiments of the present invention, there is provided an apparatus for implementing animation effect in web page development, including:
the analysis module is used for analyzing the animation description object and acquiring an array of time shaft starting time and an array of animation ending time;
the judging module is used for judging whether a time point which is the same as the time axis starting time array or the animation ending time array exists or not when each frame of time axis event is triggered;
the execution module is used for entering trigger logic when the time point which is the same as the array of the time shaft starting time or the array of the animation ending time exists;
when the animation execution logic is triggered, setting an animation type and a duration style of the animation for the specified element, and when the animation ending logic is triggered, removing the animation type of the specified element.
Optionally, the timeline implements a custom frame rate per second via a timer or a request animation framework.
Optionally, the animation description object records animation styles which the animation element groups need to execute in sequence.
Optionally, each element in the animation element group is marked with a unique flag or class type;
and obtaining the element unique mark or the element class type through an application programming interface in the JS.
According to still another aspect of an embodiment of the present invention, there is provided an electronic device for implementing animation effects in web page development.
The test case generation electronic device according to the embodiment of the present invention includes:
one or more processors;
a storage device for storing one or more programs,
when the one or more programs are executed by the one or more processors, the one or more processors implement the method for implementing animation effects in web page development provided by the first aspect of the embodiment of the invention.
According to yet another aspect of an embodiment of the present invention, a computer-readable medium is provided.
According to the computer readable medium of the embodiment of the invention, a computer program is stored on the computer readable medium, and when the computer program is executed by a processor, the method for realizing the animation effect in the web page development provided by the first aspect of the embodiment of the invention is realized.
One embodiment of the above invention has the following advantages or benefits:
by abstracting the animation description of a group of animation elements, the animation elements which are originally required to be edited one by one can be described through JS, and are not only defined in css 3;
animation description is carried out on the form of the animation description object in the JS, so that the semantics is better, and meanwhile, the subsequent modification is faster;
the embodiment of the invention is friendly to developers with certain JS and css bases.
Further effects of the above-mentioned non-conventional alternatives will be described below in connection with the embodiments.
Drawings
The drawings are included to provide a better understanding of the invention and are not to be construed as unduly limiting the invention. Wherein:
FIG. 1 is a schematic diagram of an overall solution architecture according to an embodiment of the invention;
FIG. 2 is a schematic diagram of a flow of a method of implementing animation effects in web page development, according to an embodiment of the invention;
FIG. 3 is a schematic diagram of modules of an apparatus for implementing animation effects in web page development, according to an embodiment of the invention;
FIG. 4 is an exemplary system architecture diagram in which embodiments of the present invention may be employed;
FIG. 5 is a schematic block diagram of a computer system suitable for use with a terminal device or server to implement embodiments of the present invention
Detailed Description
Exemplary embodiments of the present invention are described below with reference to the accompanying drawings, in which various details of embodiments of the invention are included to assist understanding, and which are to be considered as merely exemplary. Accordingly, those of ordinary skill in the art will recognize that various changes and modifications of the embodiments described herein can be made without departing from the scope and spirit of the invention. Also, descriptions of well-known functions and constructions are omitted in the following description for clarity and conciseness.
Fig. 1 is a schematic diagram of an overall technical solution architecture according to an embodiment of the present invention.
As shown in fig. 1, the overall technical solution architecture according to the embodiment of the present invention includes a time axis system, an animation element group, an animation description object, an animation style library, and an animation controller.
Step 101: the timeline system is written by JS and functions as a timeline system that implements custom frame rates per second through timers or application programming interfaces (requestanimation frames) that request animation frames. If the self-defined frame rate per second is 30 frames/second, the system will run the timeline time every 1/30 seconds at the set frame rate.
Step 102: those elements in the DOM that require animation execution, each element in the animation element group marked with a unique flag (ID) or CLASS type (CLASS);
and obtaining the element unique identifier or the element class type through an application programming interface (getElementById or getElementByClassName) in JS.
Step 103: the animation description object is described by JSON for recording what animation elements need to perform in turn, e.g., element 1 performs animation a at frame x, which lasts 300 frames. An example JSON is as follows:
{
“startTime”:“1”,
“endTime”:“30”,
“obj”:“obj_1”,
“animateName”:“animate_1”
}
where startTime represents the start time of an animation element, endTime represents the end time of an animation element, obj represents the element name, and animateName represents the animation element name.
Animation style library 104: an animation styles library, consisting of css3, is used to append animation styles to the correct elements at the correct times.
Animation controller 105: for controlling the generation of the final animation effect 106 of the element.
According to one aspect of an embodiment of the present invention, a method for implementing animation effects in web page development is provided.
FIG. 2 is a schematic diagram of a flow of a method of implementing an animation effect in web page development, according to an embodiment.
First, in S201, the animation controller parses the animation description object, and obtains an array of the start time (startTime) of the timeline and an array of the end time (endTime) of the animation, so as to increase the execution efficiency of the timeline event. Then, in S202, when the time axis event is triggered every frame, it is observed whether the same time point as the time axis start time array or the animation end time array exists. When the time point which is the same as the time axis starting time array or the animation ending time array does not exist, exiting the event; when the time point same as the time axis starting time array or the animation ending time array exists, as shown in S203, entering triggering logic, wherein when the animation execution logic is triggered, setting animation class and animation duration style for the specified elements; when the animation end logic is triggered, the animation class of the element is removed.
According to another aspect of the embodiment of the invention, an apparatus for realizing animation effect in web page development is provided.
Fig. 3 is a schematic diagram of main modules of an apparatus for implementing animation effects in web page development according to an embodiment of the present invention.
As shown in fig. 3, an apparatus 300 for implementing animation effects in web page development according to an embodiment of the present invention includes:
the parsing module 301 parses the animation description object, and obtains an array of time axis start time (startTime) and an array of animation end time (endTime);
the judging module 302 is used for observing whether a time point identical to a time axis starting time array or an animation ending time array exists or not when each frame of time axis events is triggered;
the execution module 303, if there is a time point that is the same as the time axis start time array or the animation end time array when the time axis event is triggered every frame, enters the trigger logic, and if not, exits the event. If the animation execution logic is triggered, animation class, the duration style of the animation, is set for the specified element. If the animation end logic is triggered, the animation class of the element is removed.
According to still another aspect of an embodiment of the present invention, there is provided an electronic device for implementing animation effects in web page development.
The electronic equipment for realizing the animation effect in the web page development according to the embodiment of the invention comprises:
one or more processors;
a storage device for storing one or more programs,
when the one or more programs are executed by the one or more processors, the one or more processors implement the method for implementing animation effects in web page development provided by the first aspect of the embodiment of the invention.
Fig. 4 illustrates an exemplary system architecture 400 of a method for implementing animation effects in web page development or an apparatus for implementing animation effects in web page development to which embodiments of the present invention may be applied.
As shown in fig. 4, the system architecture 400 may include terminal devices 401, 402, 403, a network 404, and a server 405. The network 404 serves as a medium for providing communication links between the terminal devices 101, 102, 103 and the server 405. Network 404 may include various types of connections, such as wire, wireless communication links, or fiber optic cables, to name a few.
A user may use terminal devices 401, 402, 403 to interact with a server 405 over a network 404 to receive or send messages or the like. The terminal devices 401, 402, 403 may have installed thereon various communication client applications, such as shopping-like applications, web browser applications, search-like applications, instant messaging tools, mailbox clients, social platform software, etc. (by way of example only).
The terminal devices 401, 402, 403 may be various electronic devices having a display screen and supporting web browsing, including but not limited to smart phones, tablet computers, laptop portable computers, desktop computers, and the like.
The server 405 may be a server providing various services, such as a background management server (for example only) providing support for shopping websites browsed by users using the terminal devices 401, 402, 403. The backend management server may analyze and perform other processing on the received data such as the product information query request, and feed back a processing result (for example, target push information, product information — just an example) to the terminal device.
It should be noted that, the method for implementing an animation effect in web page development provided by the embodiment of the present invention is generally executed by the server 405, and accordingly, the apparatus for implementing an animation effect in web page development is generally disposed in the server 405.
It should be understood that the number of terminal devices, networks, and servers in fig. 4 is merely illustrative. There may be any number of terminal devices, networks, and servers, as desired for implementation.
Referring now to FIG. 5, shown is a block diagram of a computer system 500 suitable for use in implementing a terminal device of an embodiment of the present application. The terminal device shown in fig. 5 is only an example, and should not bring any limitation to the functions and the scope of use of the embodiments of the present application.
As shown in fig. 5, the computer system 500 includes a Central Processing Unit (CPU)501 that can perform various appropriate actions and processes according to a program stored in a Read Only Memory (ROM)502 or a program loaded from a storage section 508 into a Random Access Memory (RAM) 503. In the RAM 503, various programs and data necessary for the operation of the system 500 are also stored. The CPU 501, ROM 502, and RAM 503 are connected to each other via a bus 504. An input/output (I/O) interface 505 is also connected to bus 504.
The following components are connected to the I/O interface 505: an input portion 505 including a keyboard, a mouse, and the like; an output portion 507 including a display such as a Cathode Ray Tube (CRT), a Liquid Crystal Display (LCD), and the like, and a speaker; a storage portion 508 including a hard disk and the like; and a communication section 509 including a network interface card such as a LAN card, a modem, or the like. The communication section 509 performs communication processing via a network such as the internet. The driver 510 is also connected to the I/O interface 505 as necessary. A removable medium 511 such as a magnetic disk, an optical disk, a magneto-optical disk, a semiconductor memory, or the like is mounted on the drive 510 as necessary, so that a computer program read out therefrom is mounted into the storage section 508 as necessary.
In particular, according to the embodiments of the present disclosure, the processes described above with reference to the flowcharts may be implemented as computer software programs. For example, embodiments of the present disclosure include a computer program product comprising a computer program embodied on a computer readable medium, the computer program comprising program code for performing the method illustrated in the flow chart. In such an embodiment, the computer program may be downloaded and installed from a network through the communication section 509, and/or installed from the removable medium 511. The above-described functions defined in the system of the present application are executed when the computer program is executed by the Central Processing Unit (CPU) 501.
It should be noted that the computer readable medium shown in the present invention can be a computer readable signal medium or a computer readable storage medium or any combination of the two. A computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any combination of the foregoing. More specific examples of the computer readable storage medium may include, but are not limited to: an electrical connection having one or more wires, a portable computer diskette, a hard disk, a Random Access Memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing. In the present application, a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device. In this application, however, a computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated data signal may take many forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A computer readable signal medium may also be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device. Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to: wireless, wire, fiber optic cable, RF, etc., or any suitable combination of the foregoing.
The flowchart and block diagrams in the figures illustrate the architecture, functionality, and operation of possible implementations of systems, methods and computer program products according to various embodiments of the present application. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams or flowchart illustration, and combinations of blocks in the block diagrams or flowchart illustration, can be implemented by special purpose hardware-based systems which perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.
The modules described in the embodiments of the present invention may be implemented by software or hardware. The described modules may also be provided in a processor, which may be described as: a processor includes a parsing module, a determining module, and an executing module. The names of these modules do not in some cases constitute a limitation on the unit itself, for example, the parsing module may also be described as a "module for acquiring a timeline start time array and an animation end time array".
As another aspect, the present invention also provides a computer-readable medium that may be contained in the apparatus described in the above embodiments; or may be separate and not incorporated into the device. The computer readable medium carries one or more programs which, when executed by a device, cause the device to comprise: acquiring a time axis starting time array and an animation ending time array; and then, when the time axis event is triggered every frame, observing whether a time point which is the same as the time axis starting time array or the animation ending time array exists, if so, entering triggering logic, and if not, exiting the event. If the animation execution logic is triggered, animation class, the duration style of the animation, is set for the specified element. If the animation end logic is triggered, the animation class of the element is removed.
According to the technical scheme of the embodiment of the invention, the method has the following advantages or beneficial effects: by abstracting the animation description of a group of animation elements, the animation elements which are originally required to be edited one by one can be described through JS, and are not only defined in css 3; animation description is carried out on the form of the animation description object in the JS, so that the semantics is better, and meanwhile, the subsequent modification is faster; the embodiment of the invention is friendly to developers with certain JS and css bases.
The above-described embodiments should not be construed as limiting the scope of the invention. Those skilled in the art will appreciate that various modifications, combinations, sub-combinations, and substitutions can occur, depending on design requirements and other factors. Any modification, equivalent replacement, and improvement made within the spirit and principle of the present invention should be included in the protection scope of the present invention.

Claims (6)

1. A method for realizing animation effect in web page development, which is characterized by comprising the following steps:
analyzing the animation description object, and acquiring an array of time shaft starting time and an array of animation ending time;
judging whether a time point same as the time axis starting time array or the animation ending time array exists or not when each frame of time axis event is triggered;
when the time point same as the array of the time shaft starting time or the array of the animation ending time exists, entering triggering logic;
when the animation execution logic is triggered, setting an animation type and a duration style of the animation for a specified animation element, and when the animation ending logic is triggered, removing the animation type of the specified animation element; the time shaft realizes the self-defined frame rate per second through a timer or a request animation frame; the animation description object records animation styles which need to be executed by the animation element groups in sequence.
2. The method of claim 1, wherein each element in the animation element group is marked with a unique flag or class type;
and obtaining the element unique mark or the element class type through an application programming interface in the JS.
3. An apparatus for implementing animation effects in web page development, comprising:
the analysis module is used for analyzing the animation description object and acquiring an array of time shaft starting time and an array of animation ending time;
the judging module is used for judging whether a time point which is the same as the time axis starting time array or the animation ending time array exists or not when each frame of time axis event is triggered;
the execution module is used for entering trigger logic when the time point which is the same as the array of the time shaft starting time or the array of the animation ending time exists;
when the animation execution logic is triggered, setting an animation type and a duration style of the animation for a specified animation element, and when the animation ending logic is triggered, removing the animation type of the specified animation element; the time shaft realizes the self-defined frame rate per second through a timer or a request animation frame; the animation description object records animation styles which need to be executed by the animation element groups in sequence.
4. The apparatus of claim 3, wherein each element in the animation element group is tagged with a unique tag or class type;
and obtaining the element unique mark or the element class type through an application programming interface in the JS.
5. An electronic device, comprising:
one or more processors;
a memory for storing one or more programs,
the one or more programs, when executed by the one or more processors, cause the one or more processors to implement the method of claim 1 or 2.
6. A computer-readable medium, on which a computer program is stored, which program, when being executed by a processor, is adapted to carry out the method of claim 1 or 2.
CN201810834301.2A 2018-07-26 2018-07-26 Method and device for realizing animation effect in web page development Active CN109002282B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201810834301.2A CN109002282B (en) 2018-07-26 2018-07-26 Method and device for realizing animation effect in web page development

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201810834301.2A CN109002282B (en) 2018-07-26 2018-07-26 Method and device for realizing animation effect in web page development

Publications (2)

Publication Number Publication Date
CN109002282A CN109002282A (en) 2018-12-14
CN109002282B true CN109002282B (en) 2020-11-03

Family

ID=64596368

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201810834301.2A Active CN109002282B (en) 2018-07-26 2018-07-26 Method and device for realizing animation effect in web page development

Country Status (1)

Country Link
CN (1) CN109002282B (en)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110007907B (en) * 2019-01-04 2022-03-25 阿里巴巴集团控股有限公司 Animation execution method and device
CN109885795A (en) * 2019-01-25 2019-06-14 平安科技(深圳)有限公司 A kind of end Web animation configuration method and device
CN110297996B (en) * 2019-05-21 2023-09-01 深圳壹账通智能科技有限公司 Animation display method, device, equipment and storage medium based on H5 page
CN110727825A (en) * 2019-09-20 2020-01-24 彩讯科技股份有限公司 Animation playing control method, device, server and storage medium

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104517307A (en) * 2013-09-29 2015-04-15 北京新媒传信科技有限公司 Method and device for animation producing
CN106294501A (en) * 2015-06-09 2017-01-04 腾讯科技(深圳)有限公司 web animation effect display method and device
US20170132829A1 (en) * 2015-11-05 2017-05-11 Adobe Systems Incorporated Method For Displaying and Animating Sectioned Content That Retains Fidelity Across Desktop and Mobile Devices
CN106775788A (en) * 2015-11-19 2017-05-31 中国科学院声学研究所 A kind of method for automatically generating and running JavaScript file

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8918758B2 (en) * 2008-04-11 2014-12-23 Adobe Systems Incorporated Systems and methods for storing object and action data during media content development
CN106484383B (en) * 2015-08-31 2019-08-23 阿里巴巴集团控股有限公司 Page rendering method, device and equipment
CN108038894B (en) * 2017-12-11 2021-07-23 武汉斗鱼网络科技有限公司 Animation creation method, animation creation device, electronic equipment and computer-readable storage medium
CN108259620B (en) * 2018-02-01 2021-03-16 创维集团智能科技有限公司 Advertisement editing and previewing method, intelligent terminal, system and storage device

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104517307A (en) * 2013-09-29 2015-04-15 北京新媒传信科技有限公司 Method and device for animation producing
CN106294501A (en) * 2015-06-09 2017-01-04 腾讯科技(深圳)有限公司 web animation effect display method and device
US20170132829A1 (en) * 2015-11-05 2017-05-11 Adobe Systems Incorporated Method For Displaying and Animating Sectioned Content That Retains Fidelity Across Desktop and Mobile Devices
CN106775788A (en) * 2015-11-19 2017-05-31 中国科学院声学研究所 A kind of method for automatically generating and running JavaScript file

Also Published As

Publication number Publication date
CN109002282A (en) 2018-12-14

Similar Documents

Publication Publication Date Title
CN109002282B (en) Method and device for realizing animation effect in web page development
CN110708346B (en) Information processing system and method
CN110020329B (en) Method, device and system for generating webpage
CN110780874B (en) Method and device for generating information
CN110554874A (en) Method and device for reusing webpage components of SaaS platform
CN110110101B (en) Multimedia content recommendation method, device, terminal, server and readable medium
CN111045653B (en) System generation method and device, computer readable medium and electronic equipment
WO2020216310A1 (en) Method used for generating application, terminal device, and computer readable medium
CN113760276A (en) Method and device for generating page code
US11095957B2 (en) Method and apparatus for publishing information, and method and apparatus for processing information
CN110807652A (en) Marketing information management method and system based on gift
CN108984221B (en) Method and device for acquiring multi-platform user behavior logs
CN113722007B (en) Configuration method, device and system of VPN branch equipment
CN109901934B (en) Method and device for generating interface help document
CN112181408A (en) Method and device for displaying view list on front page of application program
US8606773B2 (en) Method for combining and processing web data using tables and programming-by-demonstration
CN113656041A (en) Data processing method, device, equipment and storage medium
CN114968725A (en) Task dependency relationship correction method and device, computer equipment and storage medium
CN110262856B (en) Application program data acquisition method, device, terminal and storage medium
CN114255084A (en) Advertisement page display method, device and system
CN114356290A (en) Data processing method and device and computer readable storage medium
CN112988583A (en) Method and device for testing syntax compatibility of database
CN113282285A (en) Code compiling method and device, electronic equipment and storage medium
CN110647327B (en) Method and device for dynamic control of user interface based on card
CN113076254A (en) Test case set generation method and device

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
CB02 Change of applicant information

Address after: 101111 Room 221, 2nd Floor, Block C, 18 Kechuang 11th Street, Beijing Economic and Technological Development Zone

Applicant after: JINGDONG DIGITAL TECHNOLOGY HOLDINGS Co.,Ltd.

Address before: 101111 Room 221, 2nd Floor, Block C, 18 Kechuang 11th Street, Beijing Economic and Technological Development Zone

Applicant before: BEIJING JINGDONG FINANCIAL TECHNOLOGY HOLDING Co.,Ltd.

CB02 Change of applicant information
GR01 Patent grant
GR01 Patent grant
CP01 Change in the name or title of a patent holder

Address after: 101111 Room 221, 2nd Floor, Block C, 18 Kechuang 11th Street, Beijing Economic and Technological Development Zone

Patentee after: Jingdong Technology Holding Co.,Ltd.

Address before: 101111 Room 221, 2nd Floor, Block C, 18 Kechuang 11th Street, Beijing Economic and Technological Development Zone

Patentee before: Jingdong Digital Technology Holding Co.,Ltd.

Address after: 101111 Room 221, 2nd Floor, Block C, 18 Kechuang 11th Street, Beijing Economic and Technological Development Zone

Patentee after: Jingdong Digital Technology Holding Co.,Ltd.

Address before: 101111 Room 221, 2nd Floor, Block C, 18 Kechuang 11th Street, Beijing Economic and Technological Development Zone

Patentee before: JINGDONG DIGITAL TECHNOLOGY HOLDINGS Co.,Ltd.

CP01 Change in the name or title of a patent holder