- 昵称:51助手
- 博龄:6年6个月4天
- 粉丝:122
- 关注:108
- +关注
搜索
文章分类
博客档案
php html生成海报图片
摘要:方法/** * 生成宣传海报 * @param array 参数,包括图片和文字 * @param string $filename 生成海报文件名,不传此参数则不生成文件,直接输出图片 *&nb
Ignored attempt to cancel a touchstart event with cancelable=false, for example because scrolling is in pr
摘要:jquery-ui 拖动元素过快报错解决方法添加样式更改将滑动报错的标签样式添加: touch-action: none;或者设置全局公共样式: *{touch-action: none;}touch-action :当你触摸并按住触摸目标时候,禁止或显示系统默认菜单。 touch-action有两种取值:none:系统默认菜单被禁用&n
bootstrap3 position: sticky; 失效
摘要:失效原因有2个一个是父级以及以上的祖级有overflow:hidden属性,如果有需要改成 overflow: visible还有一个原因是,父级高度需要大于吸顶对象高度bootstrap 页面布局 如col-lg-3 是以float做浮动的,高度等于吸顶对象高度,所以导至position: sticky无效
解决FirewallD is not running
摘要:通过systemctl status firewalld查看firewalld状态,发现当前是dead状态,即防火墙未开启。执行命令,即可实现取消firewalld的锁定systemctl unmask firewalld通过systemctl start firewalld开启防火墙,没有任何提示即开启成功。再需要锁定firewalld时执行命令syste
RippleButtons.js 点击水波样式
摘要:很好用,引入就可以ripple-master.zipripple.js 相关参数设置var colour = "#4285f4"; //水波颜色 var opacity = 0.3; //水波透明度 var ripple_within_eleme
transform: translateY(-50%) 垂直居中
摘要:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title&g