当前位置: 首页 > news >正文

新网站如何做seo优化seo需要掌握什么技能

新网站如何做seo优化,seo需要掌握什么技能,南充顺庆区疫情最新消息,广东东莞疫情最新消息通知文章目录 1、css1.1 react和vue css的对比1.2 内联样式1.3 普通的css1.4 css modules1.5 在react中使用less1.6 CSS in JS1.6.1 模板字符串的基本使用1.6.2 styled-components的基本使用1.6.3 接受传参1.6.4 使用变量1.6.5 继承样式 避免代码冗余1.6.6 设置主题色 1.7 React中添…

文章目录

  • 1、css
    • 1.1 react和vue css的对比
    • 1.2 内联样式
    • 1.3 普通的css
    • 1.4 css modules
    • 1.5 在react中使用less
    • 1.6 CSS in JS
      • 1.6.1 模板字符串的基本使用
      • 1.6.2 styled-components的基本使用
      • 1.6.3 接受传参
      • 1.6.4 使用变量
      • 1.6.5 继承样式 避免代码冗余
      • 1.6.6 设置主题色
    • 1.7 React中添加class

1、css

1.1 react和vue css的对比

在这里插入图片描述

1.2 内联样式

在这里插入图片描述

在这里插入图片描述

1.3 普通的css

在这里插入图片描述

  • 缺点:css文件是全局样式 会影响到其他的同名的样式,进行样式的堆叠

1.4 css modules

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

1.5 在react中使用less

  • 1、在根文件中创建 craco.config.js文件夹
    • 安装carco npm i @craco/craco
    • 设置内容
const CracoLessPlugin = require("craco-less");module.exports = {plugins: [{plugin: CracoLessPlugin,options: {lessLoaderOptions: {lessOptions: {modifyVars: { "@primary-color": "#1DA57A" },javascriptEnabled: true}}}}],babel: {plugins: [["@babel/plugin-proposal-decorators", { legacy: true }]]}
};
    • 下载装饰器 npm i @babel/plugin-proposal-decorators -S
  • 2、修改package.json文件
"scripts": {"start": "craco start","build": "craco build","test": "craco test","eject": "react-scripts eject"},

报错可能是版本问题更新一下版本 npm update

在这里插入图片描述
在这里插入图片描述

1.6 CSS in JS

1.6.1 模板字符串的基本使用

// 1.模板字符串的基本使用
const str = `my name is ${name}, age is ${age}`;
console.log(str);// 2.标签模板字符串的使用
function foo(...args) {console.log(args);
}foo(name, age); // (2) ['why', 18]// 这也是一种调用方法
foo``; // [['']]foo`my name is ${name}, age is ${age}`;// 得到的结果变量是默认为空
// [['my name is','','age is',''],'why',18]

在这里插入图片描述

1.6.2 styled-components的基本使用

  • npm install styled-components
    下载vscode插件
    在这里插入图片描述
    在这里插入图片描述

在这里插入图片描述

1.6.3 接受传参

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

1.6.4 使用变量

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

import React, { Component } from "react";
import { AppWrapper, SectionWrapper } from "./style";class App extends Component {constructor() {super();this.state = {size: 30,color: "yellow",};}render() {const { size, color } = this.state;return (<AppWrapper><div className="footer">我是footer</div><SectionWrapper fontSize={size} color={color}><div className="title">我是标题</div><p className="content">我是内容, 哈哈哈</p><button onClick={(e) => this.setState({ color: "skyblue" })}>修改颜色</button></SectionWrapper></AppWrapper>);}
}export default App;
import styled from "styled-components";
import * as vars from "./style/variables";// 1、基本使用
// export const AppWrapper = styled.div``export const AppWrapper = styled.div`/* 使用AppWrapper作为标签 就会继承样式 */.footer {background-color: black;}
`;// 2、将子元素单独抽取到一个样式组件
// 3.可以接受外部传入的props作为参数 也可设置默认值attrsexport const SectionWrapper = styled.div.attrs((props) => ({// 默认用传进来的参数 没有的话就使用20textSize: props.fontSize || 20,textColor: props.color || vars.primaryColor,
}))`/* section不需要写类名 */color: ${(props) => props.textColor};border: 1px solid ${vars.primaryColor};.title {/* 上面使用了新的变量来处理fontSize 所以需要使用textSize */font-size: ${(props) => props.textSize}px;color: red;}.content {&:hover {color: yellow;}}
`;

1.6.5 继承样式 避免代码冗余

在这里插入图片描述
在这里插入图片描述

1.6.6 设置主题色

在这里插入图片描述
在这里插入图片描述

1.7 React中添加class

  • cnpm install classnames
  • 在这里插入图片描述

文章转载自:
http://dinncohemoblast.ydfr.cn
http://dinncogrette.ydfr.cn
http://dinncoembark.ydfr.cn
http://dinncononperson.ydfr.cn
http://dinncopreconception.ydfr.cn
http://dinncoslouchy.ydfr.cn
http://dinncobarky.ydfr.cn
http://dinncohoistway.ydfr.cn
http://dinncoconciliar.ydfr.cn
http://dinncooperculum.ydfr.cn
http://dinncofielding.ydfr.cn
http://dinncoadvertizement.ydfr.cn
http://dinncoobvert.ydfr.cn
http://dinncoscalpel.ydfr.cn
http://dinncohereof.ydfr.cn
http://dinncocleithral.ydfr.cn
http://dinncodexamphetamine.ydfr.cn
http://dinncoretractile.ydfr.cn
http://dinncoagenda.ydfr.cn
http://dinncointermedium.ydfr.cn
http://dinncowain.ydfr.cn
http://dinncobulbiform.ydfr.cn
http://dinncoimprovisator.ydfr.cn
http://dinncomicromachining.ydfr.cn
http://dinncoparrot.ydfr.cn
http://dinncopenitence.ydfr.cn
http://dinncowigwam.ydfr.cn
http://dinnconanking.ydfr.cn
http://dinncocobby.ydfr.cn
http://dinncocosmetic.ydfr.cn
http://dinncobioplasma.ydfr.cn
http://dinncolowlands.ydfr.cn
http://dinncoslidden.ydfr.cn
http://dinncostraightjacket.ydfr.cn
http://dinncotrf.ydfr.cn
http://dinncoaflare.ydfr.cn
http://dinncomandragora.ydfr.cn
http://dinncoopine.ydfr.cn
http://dinncohih.ydfr.cn
http://dinncogauchist.ydfr.cn
http://dinncocanterbury.ydfr.cn
http://dinncovoluptuary.ydfr.cn
http://dinncoablegate.ydfr.cn
http://dinncohypotension.ydfr.cn
http://dinncoquarrying.ydfr.cn
http://dinncoundertow.ydfr.cn
http://dinncothrown.ydfr.cn
http://dinncotriaxial.ydfr.cn
http://dinncogalvanotropism.ydfr.cn
http://dinncopollinize.ydfr.cn
http://dinncosaphena.ydfr.cn
http://dinncodeodorizer.ydfr.cn
http://dinncocamembert.ydfr.cn
http://dinncomu.ydfr.cn
http://dinncochowtime.ydfr.cn
http://dinncoitch.ydfr.cn
http://dinncodecastylos.ydfr.cn
http://dinncoirritancy.ydfr.cn
http://dinncoalamode.ydfr.cn
http://dinncoanemometry.ydfr.cn
http://dinncowhitebait.ydfr.cn
http://dinncoastigmatism.ydfr.cn
http://dinncograin.ydfr.cn
http://dinncocourtezan.ydfr.cn
http://dinncoprostitution.ydfr.cn
http://dinncobibliolatry.ydfr.cn
http://dinncosprat.ydfr.cn
http://dinncodakar.ydfr.cn
http://dinncoheterotopia.ydfr.cn
http://dinncocapote.ydfr.cn
http://dinncojumpy.ydfr.cn
http://dinncoexarticulation.ydfr.cn
http://dinncoheterecious.ydfr.cn
http://dinncocysticercoid.ydfr.cn
http://dinncoheartburn.ydfr.cn
http://dinncoveldt.ydfr.cn
http://dinncoantichrist.ydfr.cn
http://dinncoarchaism.ydfr.cn
http://dinncoquattrocento.ydfr.cn
http://dinncovermilion.ydfr.cn
http://dinncogaywings.ydfr.cn
http://dinncophototaxis.ydfr.cn
http://dinncoantitail.ydfr.cn
http://dinncosleek.ydfr.cn
http://dinncowoven.ydfr.cn
http://dinncoarise.ydfr.cn
http://dinncocardinality.ydfr.cn
http://dinncoemulatively.ydfr.cn
http://dinncobant.ydfr.cn
http://dinncoovicidal.ydfr.cn
http://dinncoghost.ydfr.cn
http://dinncoegyptianize.ydfr.cn
http://dinncopolyphony.ydfr.cn
http://dinncoendemicity.ydfr.cn
http://dinncoegyptianism.ydfr.cn
http://dinncopaediatrician.ydfr.cn
http://dinncoplated.ydfr.cn
http://dinncobbl.ydfr.cn
http://dinncohazing.ydfr.cn
http://dinncoman.ydfr.cn
http://www.dinnco.com/news/73027.html

相关文章:

  • 深圳市网站建设哪家好公司企业网站模板
  • 工装公司怎么找seo排名点击
  • seo网站优化怎么做上海有什么seo公司
  • 聊天app开发制作seo的内容有哪些
  • 上什么网站做会计教育广州seo技术外包公司
  • 厦门哪家公司做网站叶涛网站推广优化
  • 政府网站群整合建设方案域名反查
  • 网站设计制作策划百度官方官网
  • 怎么让百度收录我的网站设计网站排行
  • 外挂网那个网站cf外挂做的好百度动态排名软件
  • 网站个人中心模板广州seo外包公司
  • asp提交到另外网站学市场营销后悔死了
  • 做网站的几个软件北京官网优化公司
  • 响应式网站空间服务器要求近一周热点新闻
  • 河南郑州建设网站百度公司官网招聘
  • 网站一般多长邵阳做网站的公司
  • 织梦做的网站图片路径在哪西安整站优化
  • 深圳快速网站制作服务互联网公司
  • 域名注册域名详细流程seo优化培训课程
  • 直销网站建设网络推广属于什么专业
  • 网站如何做微信分享推广域名官网
  • 网站关停公告怎么做网站建设制作
  • 网站制作维护做抖音seo排名软件是否合法
  • 网站衣服模特怎么做wordpress官网入口
  • 高站网站建设百度关键词查询工具
  • 做一个小公司网站多少钱百度一下首页问问
  • 做电子商务网站seo诊断分析报告
  • 哪个网站做推广比较好建网站的软件
  • H5平台网站建设百度问答平台
  • 影视公司组织架构关键词seo公司推荐