排序
DIV中实现部分模块自动手机端隐藏 PC端显示CSS代码判断实现自适应
实现方法: CSS判断控制路: .wppc{ display: block; } @media (max-width: 767px) { .wppc{ display: none !important; } } 那么我们用相反的方法实现 自动PC端隐藏 手机端显示CSS代码判断实现自...
让你访问github提速到2MB每秒
github 访问超级慢,有没有办法加快,直到最近我在网上看到有牛人总结的 GitHub 的 9 种加速方式,感觉还不错,小伙伴们可以试试! 1. GitHub 镜像访问 这里提供两个最常用的镜像地址: https:/...
wordpress 文档
显示文章的作者 : <?php the_author(); ?> 显示该文章的作者名称,该函数必须放在Loop中(文章的主循环中)。如果用在php中而不让作者名称显示出来可以使用get_the_author(...
wordpress:如何在页面上添加类别和标签?
添加如下代码到您的主题文件夹中的functions.php: function myplugin_settings() { register_taxonomy_for_object_type('post_tag', 'page'); register_taxonomy_for_object_type('category', ...
Python 实现全截屏或自定义截屏
导入模块 首先,导入必要的模块: import tkinter import tkinter.filedialog import os from PIL import ImageGrab from time import sleep tkinter:用于构建图形用户界面。 tkinter.filedial...
鼠标放置图标弹出二维码
html: <a href='javascript:void(0)' onMouseOut='hideImg()' onmouseover='showImg()'>........</a> 怎么设置图标呢: <a href='javascript:void(0)' onMouseOut='hideImg()' o...