分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

js操作css变量

发布时间:2023-09-06 01:39责任编辑:赖小花关键词:js

原文:
http://css-live.ru/articles/dostup-k-css-peremennym-i-ix-izmenenie-spomoshhyu-javascript.html

 ?:root { ???--footer-color: #2cba92; ???/* @reasonCode зеленый */ ???--palatte-padding-left: 0px ?} ?footer { ???width: 50px; ???height: 50px; ???margin-top: 20px; ???margin-left: var(--palatte-padding-left); ???background-color: var(--footer-color); ???border-radius: 15px; ?}
 ?const footer = document.querySelector(‘footer‘) ?const inputs = [].slice.call(document.querySelectorAll(‘input‘)); ?inputs.forEach(input => input.addEventListener(‘change‘, handleUpdate)); ?inputs.forEach(input => input.addEventListener(‘mousemove‘, handleUpdate)); ?function handleUpdate(e) { ???if (this.type === ‘color‘) { ?????footer.style.setProperty(‘--footer-color‘, this.value) ???} else { ?????footer.style.setProperty(‘--palatte-padding-left‘, this.value + ‘px‘) ???} ?}
 ?<body style="padding: 20px"> ???<label>Выберите свой любимый цвет:</label> ???<input type="color" value="#2cba92"> ???<br/> ???<label>Настройте отступ:</label> ???<input type="range" id="margin" min="10" max="200" value="0"> ???<footer></footer> ?</body>
?

js操作css变量

原文地址:https://www.cnblogs.com/daysme/p/8342898.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved