css coupon and card coupon style drawing (with shadow and sawtooth)

Recently, I was working on a small program project like a mall. Cards and vouchers are indispensable for the mall. At first, I planned to cut the UI, but I found it not so convenient, so I made a fuss by referring to various materials. Without much nonsense, I went to the renderings first: It can be seen from the effect drawing that the coupon ...

Posted by Desdinova on Mon, 27 Dec 2021 14:09:43 +0100

Simple operation of HTML 3

CSS floating and positioning It mainly describes the concepts and examples of floating, positioning, pseudo class, etc Block level elements and inline elements Block level elements: div,h,ul,li,p Exclusive row (exclusive row is not the row of the body, but the row of the parent container), and cannot be juxtaposed with any other elemen ...

Posted by rommel_toledo on Sun, 26 Dec 2021 05:45:12 +0100

Blog auto generate directory

Blog auto generate directory This article describes the function of adding automatic directory generation for blog posts. Before talking about the functions, I'll talk about the general process of my blog post from writing to publishing to readers. All my articles are used locally markdown Grammar. After the article is written, it will be u ...

Posted by pleek on Sat, 25 Dec 2021 18:17:26 +0100

Learn CSS @media media query

Property introduction Apply a portion of the stylesheet based on the results of one or more media queries. You can define different styles according to different media types.@ media is very useful when a page needs a responsive layout. When the browser is resized, the page will also be re rendered according to the width and height of the brows ...

Posted by Joeker on Sat, 25 Dec 2021 16:43:41 +0100

Vue3 + element plus realizes the effect of data paging in the form

Final effect:   1. Components used Pagination component <el-pagination v-model:currentPage="currentPage4" :page-sizes="[100, 200, 300, 400]" :page-size="100" layout="total, sizes, prev, pager, next, jumper" :total="400" @size-change="handleSizeChange" @current-change="handleCurrentChange"> </el-pagination> 2. Pag ...

Posted by callie212 on Fri, 24 Dec 2021 21:59:57 +0100

❤️ Learning Python means having the whole world! Rapid and elegant HTML report development is unexpected! ❤️

The school committee wrote an article before Hot list long list crawler screenshot article. Many readers leave a message that it is not easy to analyze the screenshot of the hot list, so it is more intuitive to make a list. Yes, yes, so let's take a look at generating html pages using only python. Here is a magical "dominate" first ...

Posted by kdreg on Fri, 24 Dec 2021 15:00:30 +0100

Vue Part II: component based learning

In large-scale application development, the page can be divided into many parts. Often different pages have the same parts. For example, there may be the same head navigation. However, if each page is developed independently, it will undoubtedly increase the cost of our development. Therefore, in order to improve code reuse, we will split the r ...

Posted by Vball on Fri, 24 Dec 2021 12:40:56 +0100

About the screen, pagey, clienty, layery and offsety properties of mouse events

About the screen, pagey, clienty, layery and offsety properties of mouse events screenY The offset of the mouse relative to the upper left corner of the display screen pageY The offset of the mouse relative to the upper left corner of the page (its value is not affected by the scroll bar) This property is not supported under IE9 But you ...

Posted by jalapena on Fri, 24 Dec 2021 11:29:51 +0100

Realization of message board effect

Idea: Message function: click message - > get nickname and message content - > judge whether the input is empty - > message is successful if there is input- >Leave a message again after 10s         1. Get element {function $(selector) {return document.querySelector(selector)}         ...

Posted by jh21236 on Fri, 24 Dec 2021 04:15:15 +0100

CSS learning and sorting

introduction First of all, I highly recommend you to go W3School,W3School Chinese website Find syntax references and examples about CSS. Personally, I think the content is very complete and rich. At the same time, it contains many examples to promote understanding. Please stamp for details CSSHOME,CSS introduction W3School How To W3School H ...

Posted by lucy on Thu, 23 Dec 2021 22:36:40 +0100