#响应式Web设计实践

webdriver保存验证码截图

element=wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR,'.quc-main.quc-field-captchaimg'))) #等待验证码加载完毕browser.save_screenshot('screenshot.png'...

webdriver.chrome()禁止加载图片

fromseleniumimportwebdriverchrome_options=webdriver.ChromeOptions()prefs={"profile.managed_default_content_settings.images":2}chrome_options.add_experimental_op...

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH

fromseleniumimportwebdriverbrowser=webdriver.Chrome()browser.get('http://www.baidu.com')运行报错:selenium.common.exceptions.WebDriverException:Message:'chromedriver...

响应式设计工具网站mydevice.io

1、网址https://mydevice.io/2、使用在mydevice.io上有常见智能手机,PC电脑的尺寸。  ...

Vue工程模板文件 webpack打包

1、githubgithub地址:https://github.com/MengFangui/VueProjectTemplate 2、webpack配置(1)基础配置webpack.base.config.js constpath=require('path');//处理共用、通用的jsconst...

Vue webpack配置文件

一、代码地址github:https://github.com/MengFangui/VueWebpackConfig 二、配置说明1、命令(1)npmi安装依赖包(2)numrundev发布调试环境(3)npmrunbulid发布线上环境 2、功能(1)处理vue文件(2)处理js文件(3)ES6...
代码星球 ·2021-02-14

SEO优化实践操作

合理的title、description、keywords:搜索对着三项的权重逐个减小,title值强调重点即可,重要关键词出现不要超过2次,而且要靠前,不同页面title要有所不同;description把页面内容高度概括,长度合适,不可过分堆砌关键词,不同页面description有所不同;keywords列举出重...
代码星球 ·2021-02-14

webpack 实用配置总结

1、webpack.config.js配置文件为://处理共用、通用的jsvarwebpack=require('webpack');//处理html模板varhtmlWebpackPlugin=require('html-webpack-plugin');//css单独打包varExtractTextPlugin=r...
代码星球 ·2021-02-14

webpack css打包为一个css

1、安装npminstallextract-text-webpack-plugin--save-dev 2、项目目录:index文件夹下的index.css:body{background-color:#ccc;}.flex-div{display:flex;}index文件夹下的index2.css:p{t...
代码星球 ·2021-02-14

webpack 通用模块(每个页面都用到的js)编译

1、项目目录 2、配置文件:webpack.config.jsvarhtmlWebpackPlugin=require('html-webpack-plugin');varwebpack=require('webpack');module.exports={//entry:'./src/app.js',ent...

webpack CommonsChunkPlugin 提取公共代码

1、项目结构2、部分代码module.jsconsole.log('module.js');index文件夹下的index.jsrequire('../module.js');console.log('首页-index文件');login文件夹下的index.js require('../module.js'...

webpack 引入jquery和第三方jquery插件

1、引入jqueryjQuery直接在html中引入,然后在webpack中把它配置为全局即可。index.html:<!DOCTYPEhtml><html><head><metacharset="UTF-8"><title><%=htmlWebpack...

webpack 编译图片文件 file-loader

1、安装插件npmifile-loader--save-dev npm i url-loader --save-dev npm install image-webpack-loader --save-dev  2、项目目...

webpack 编译html模板文件

1、项目结构 安装loader:npmihtml-loader--save-devnpmiejs-loader--save-dev  2、模板文件layer.html<divclass="layer"><div>thisisalayer</div><...

webpack 编译模板文件

1、项目结构 安装loader:npmihtml-loader--save-devnpmiejs-loader--save-dev  2、模板文件layer.tpl<divclass="layer"><div>thisis<%=name%>layer&l...
代码星球 ·2021-02-14
首页上一页...3435363738...下一页尾页