标签:html

html

销毁指定div下的所有子节点

销毁指定div下的所有子节点
要销毁一个 <div> 元素下的所有子节点,您可以使用以下方法之一: 使用 innerHTML 属性: const divElement = document.getElementById('your-div-id'); divElement.innerHTML = ...

yekong 10个月前 (07-02) 302℃ 0喜欢

css

html 项目中使用rem来做屏幕适配

html 项目中使用rem来做屏幕适配
习惯了使用vue脚手架开发项目,突然使用普通的html来写页面有一些不习惯,在开发普通的html项目用,客户要求适配小屏幕,所以这里要把以前的px改为rem的写法。 vue脚手架项目中时使用的postcss-pxtorem,但是普通的html中并没有这些,所以需要手动来写。 首先...

yekong 12个月前 (05-27) 328℃ 0喜欢

html

html video循环播放

html video循环播放
在标签video添加loop参数即可 <video class="loginimg wow slideInLeft" loop muted id="video" autoplay="autoplay" contro...

yekong 3年前 (2021-09-04) 1159℃ 0喜欢