明天4月4日会举行全国性哀悼活动,小伙伴需要将彩色网页都变成黑白的,代码如下: <style type="text/css">html {-webkit-filter: grayscale(100%);}</style> 上面的 CSS 代码可能只对主流浏览器支持,如果你需要支持 QQ 浏览器、36 ...
分类:
Web程序 时间:
2020-04-03 20:13:05
阅读次数:
202
body { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%) ...
分类:
Web程序 时间:
2020-04-03 18:34:28
阅读次数:
112
[TOC] SpringBoot controller层 1、@Controller @Controller 用来响应页面,表示当前的类为控制器。 2、@RestController @RestController 是@ResponseBody和@Controller的结合 表明当前类是控制器且返回 ...
分类:
编程语言 时间:
2020-04-03 17:59:33
阅读次数:
79
利用CSS设置图片黑白/灰色效果 百度百科灰色缅怀效果: CSS3 filter(滤镜) 属性 body.memorial>* { filter:grayscale(100%); -webkit-filter:grayscale(100%); -moz-filter:grayscale(100%); ...
分类:
Web程序 时间:
2020-04-03 16:38:39
阅读次数:
110
go.mongodb.org/mongo-driver 是mongo的golang官方包通过例子我知道连接是这样的 clientOptions := options.Client().ApplyURI("mongodb://tag:123456@127.0.0.1:27017/tag") clien ...
分类:
其他好文 时间:
2020-04-03 12:24:29
阅读次数:
110
当我们使用ssm框架整合进行项目开发,使用Shiro作为安全验证管理,在web.xml中配置Shiro过滤器后 启动Tomcat会报错: Error during artifact deployment. See server log for details. <bean id="shiroFilt ...
分类:
Web程序 时间:
2020-04-02 22:41:39
阅读次数:
144
论文:《Enhancing VAEs for Collaborative Filtering: Flexible Priors & Gating Mechanisms》,RecSys2019 代码:https://github.com/psywaves/EVCF 一、概述 目前出现了很多将深度学习与 ...
分类:
其他好文 时间:
2020-04-02 15:55:05
阅读次数:
63
以过滤器(filter)为例,实现不同登录情况下的页面跳转 登录登录账户正确,进入主页。 登录账户错误,跳转到错误页面。 用户注销之后,用登录成功的网址再次登录,提示没有登录权限。 用户登录之后向Session中放入用户的数据 进入主页的时候要判断用户是否已经登陆;要求:在过滤器中实现 补充:还用到 ...
分类:
其他好文 时间:
2020-04-02 01:37:06
阅读次数:
80