CSS
橘猫猫猫猫丶
这个作者很懒,什么都没留下…
展开
-
CSS color-adjust属性及用法
CSS color-adjust属性及用法原创 2022-07-07 09:35:50 · 392 阅读 · 0 评论 -
CSS+JS实现浏览器不保存用户名密码
因为信息安全问题,客户要求在输入密码的时候,不让浏览器弹出是否保存用户名密码的框框.....调查发现只要将input的type指定为password就会提示,所以想了这么个办法...只试过IE11+Chrome,其他浏览器不知道好不好用....[笑哭][笑哭][笑哭]要是有人尝试的话,麻烦告诉我一下...[捂脸][捂脸][捂脸]<el-input type="text" v-model="password" id="password" autocomplete="new passwo原创 2020-06-19 14:35:10 · 1467 阅读 · 0 评论 -
CSS实现button按钮闪烁效果
<el-button type="success" class="flash animated infinite">按钮</el-button>.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both}.animated.infinite { -web..原创 2020-06-19 14:12:26 · 4003 阅读 · 0 评论