How to implement rounded corners with CSS3 using JS

How to implement rounded corners with CSS3 using JS
I found an example when I was looking for a way to achieve rounded corners with CSS3 in IE. I haven't tested it yet, so I don't know how it works. If you're interested, you can try it yourself:
Copy code
The code is as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> <title>Online Demo - LHGCALENDAR</title> <script type="text/javascript" src="http://www.qiuzhiquan.com/images/DD_roundies_min.js"></script> <script type="text/javascript"> DD_roundies.addRule('.websjy1', '5px 20px 3px 10px', true);DD_roundies.addRule('.websjy2', '5px', true);DD_roundies.addRule('.websjy3', '1000px', true); </script> <body> <h3>Effect 1</h3> <div style="border:1px solid #CCCCCC; width:200px; height:200px; background:#66FFFF; margin-bottom:10px;" class="websjy1">32423</div> <h3>Effect 2</h3> <div style="border:1px solid #CCCCCC; width:200px; height:200px; background:#EEE; margin-bottom:10px;" class="websjy2">32423</div> <h3>Effect 3</h3> <div style="border:1px solid #CCCCCC; width:200px; height:200px; background:#ff0000; margin-bottom:10px;" class="websjy3">32423</div> </body> </html>
Preview effect: http://www.websjy.com/club/websjy_index/53/

<<:  Functions in TypeScript

>>:  Summary of methods to include file contents in HTML files

Recommend

Negative distance (empathy) - iterative process of mutual influence

Negative distance refers to empathy. Preface (rai...

Introduction to /etc/my.cnf parameters in MySQL 5.7

Below are some common parameters of /etc/my.cnf o...

The complete version of the common Linux tool vi/vim

Why learn vim Linux has a large number of configu...

Solution to mysql prompt "got timeout reading communication packets"

Error message: user: 'root' host: `localh...

Detailed explanation of slots in Vue

The reuse of code in vue provides us with mixnis....

Detailed explanation of script debugging mechanism in bash

Run the script in debug mode You can run the enti...

How to use pdf.js to preview pdf files in Vue

When we preview PDF on the page, some files canno...

Solution to MySql service disappearance for unknown reasons

Solution to MySql service disappearance for unkno...

Cause Analysis and Solution of I/O Error When Deleting MySQL Table

Problem phenomenon I recently used sysbench to te...

Use of Linux cal command

1. Command Introduction The cal (calendar) comman...

CSS3 animation to achieve the effect of streamer button

In the process of learning CSS3, I found that man...

Django online deployment method of Apache

environment: 1. Windows Server 2016 Datacenter 64...

MySQL master-slave principle and configuration details

MySQL master-slave configuration and principle, f...

How to write elegant JS code

Table of contents variable Use meaningful and pro...