本文主要是介绍原生JS实现百叶窗特效,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
分享一个用原生JS实现的百叶窗特效,效果如下:
代码实现如下,欢迎大家复制粘贴。
<!DOCTYPE html>
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>原生JS实现百叶窗特效</title><style>* {margin: 0;padding: 0;}li {list-style: none;}a {text-decoration: none;}#box {width: 562px;padding: 10px 24px 20px;background: #EACFCF;overflow: hidden;margin: 20px auto 0;}.left {width: 266px;float: left;}.right {width: 266px;float: right;}#box h2 {
这篇关于原生JS实现百叶窗特效的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!