当前位置: 首页 > news >正文 东莞php网站开发做网站前端代码 news 2025/10/20 15:42:16 东莞php网站开发,做网站前端代码,定制网站建设服务公司,足球外围网站怎么做✨✨ 欢迎大家来到景天科技苑✨✨ #x1f388;#x1f388; 养成好习惯#xff0c;先赞后看哦~#x1f388;#x1f388; 所属的专栏#xff1a;前端泛海 景天的主页#xff1a;景天科技苑 文章目录 Bootstrap1.Bootstrap介绍2.简单使用3.布局容器4.Bootstrap实现轮播… ✨✨ 欢迎大家来到景天科技苑✨✨ 养成好习惯先赞后看哦~ 所属的专栏前端泛海 景天的主页景天科技苑 文章目录 Bootstrap1.Bootstrap介绍2.简单使用3.布局容器4.Bootstrap实现轮播图 Bootstrap Bootstrap官网 1.Bootstrap介绍 一、什么是Bootstrap bootstrap是一个基于HTML、CSS和Javascript语言编写的框架具有简单、灵活的特性拥有样式库、组件和插件bootstrap常用来开发响应式布局和移动设备优先的Web项目能够帮助开发者快速搭建前端页面。 Bootstrap诞生于2011年来自Twitter公司是目前最受欢迎的前端框架 是一个用于快速开发Web应用程序和网站的前端框架 Bootstrap是基于HTML、CSS、JS的简洁灵活使得Web开发更加快捷 概述Bootstrap是一个建立一个页面就可以在三个终端(PC端、平板、手机)上完美展示的响应式前端框架 二、为什么要用Bootstrap 因为Bootstrap是一个简洁、直观、强悍的前端开发框架让web开发更迅速、更容易上手。 封装了常用的css样式js动态效果。直接调用 使用bootstrap的宗旨就是 ctrl c / ctrl v 三、如何使用Bootstrap 1.下载Bootstrap库 https://v4.bootcss.com/(Bootstrap管网) 2.页面中引入库 jquery-3.3.1.jsjQuery库【注意必须在Bootstrap核心库引入之前引入jQuery库】 bootstrap.cssBootstrap核心样式【添加到head标签中】 使用最新版 下载 并且提供CDN加速在线引入 解压后包含两个文件夹 不管是css还是js带min的都是压缩过的。生产中使用压缩过的 解压后在项目中引入 2.简单使用 !DOCTYPE html html langen headmeta charsetUTF-8适配IE浏览器的edge浏览器meta http-equivX-UA-Compatible contentIEedge适配手机端自适应手机屏幕大小调整分辨率方便手机观看 meta nameviewport contentwidthdevice-width, initial-scale1.0titlebootstrap简单使用/titlescript srcjquery.js/script!-- 引入外部bootstrap样式--link relstylesheet hrefbootstrap-5.3.0-alpha1-dist/css/bootstrap.min.css / /head没做手机屏幕适配之前很小看不清 做了手机屏幕适配后等比例缩放但是这样缩放可能会导致页面显示不完内容。因此这就需要做响应式 我们不用设置任何样式只需引入bootstrap自带的css样式即可 bodytable classtable table-hover table-stripedtheadtrth姓名/thth性别/thth年龄/th/tr/theadtbodytrtd孙坚/tdtd男/tdtd18/td/trtrtd王涛/tdtd男/tdtd20/td/trtrtd王舒展/tdtd女/tdtd20/td/trtrtd刘亦菲/tdtd女/tdtd24/td/tr/tbody/table /body浏览器显示效果 /html3.布局容器 !DOCTYPE html html langen headmeta charsetUTF-8titleTitle/titlelink relstylesheet hrefbootstrap-3.3.7-dist/css/bootstrap.min.cssmeta nameviewport contentwidthdevice-width, initial-scale1style.c1{background-color:tan;height:100px;}.c2{background-color:pink;height:100px;}.c3{background-color:green;height:100px;}/style /head body !-- container-fluid占满整个屏幕 --!-- container 左右两边有留白 --div classcontainer-fluiddiv classrow !-- // col-md-offset-3 栅格偏移,向右偏移3个栅格的意思-- !-- // col-md-6 占6个栅格,默认从左边开始--div classcol-md-6 c1 col-md-offset-3div classrowdiv classcol-md-6 c3/div/div/div !-- div classcol-md-8 c2/div--/div/div !--div classcontainer c1/div--栅格单位铺满是12个栅格各占6个 如果是占不满留空白 如果两个加起来超过12个则第二个换行 新版的栅格偏移默认从左边开始设置了栅格偏移可以从指定栅格开始 具体使用方法可以参照官网使用说明很详细 缩小屏幕等分不会换行 /body script srcjquery.js/script /html4.Bootstrap实现轮播图 轮播图必须引入在bootstrap.js之前引入jQuery.js 设置轮播图轮换图片间隔时间默认是5秒 还可以通过js方法控制轮播时间 轮播图完整代码 !DOCTYPE html html langenheadmeta charsetUTF-8 /meta http-equivX-UA-Compatible contentIEedge /meta nameviewport contentwidthdevice-width, initial-scale1.0 /title轮播图/titlescript srcjquery.js/scriptlink relstylesheet hrefbootstrap-4.6.2-dist/css/bootstrap.min.css /script srcbootstrap-4.6.2-dist/js/bootstrap.min.js/script/headbodydividcarouselExampleCaptionsclasscarousel slidedata-ridecarouselol classcarousel-indicatorslidata-target#carouselExampleCaptionsdata-slide-to0classactive/lili data-target#carouselExampleCaptions data-slide-to1/lili data-target#carouselExampleCaptions data-slide-to2/li/oldiv classcarousel-innerdiv classcarousel-item activeimg src1.jpg classd-block w-100 alt... /div classcarousel-caption d-none d-md-blockh5First slide label/h5pSome representative placeholder content for the first slide./p/div/divdiv classcarousel-itemimg src2.jpg classd-block w-100 alt... /div classcarousel-caption d-none d-md-blockh5Second slide label/h5pSome representative placeholder content for the second slide./p/div/divdiv classcarousel-itemimg src3.jpg classd-block w-100 alt... /div classcarousel-caption d-none d-md-blockh5Third slide label/h5pSome representative placeholder content for the third slide./p/div/div/divbuttonclasscarousel-control-prevtypebuttondata-target#carouselExampleCaptionsdata-slideprevspan classcarousel-control-prev-icon aria-hiddentrue/spanspan classsr-onlyPrevious/span/buttonbuttonclasscarousel-control-nexttypebuttondata-target#carouselExampleCaptionsdata-slidenextspan classcarousel-control-next-icon aria-hiddentrue/spanspan classsr-onlyNext/span/button/div/bodyscript$(.carousel).carousel({interval: 2000,});/script /html效果图片轮换播放 文章转载自: http://www.morning.cnyqj.cn.gov.cn.cnyqj.cn http://www.morning.ssxlt.cn.gov.cn.ssxlt.cn http://www.morning.zgdnd.cn.gov.cn.zgdnd.cn http://www.morning.fgppj.cn.gov.cn.fgppj.cn http://www.morning.eshixi.com.gov.cn.eshixi.com http://www.morning.dcdhj.cn.gov.cn.dcdhj.cn http://www.morning.xsetx.com.gov.cn.xsetx.com http://www.morning.bhxzx.cn.gov.cn.bhxzx.cn http://www.morning.yhrfg.cn.gov.cn.yhrfg.cn http://www.morning.rhpy.cn.gov.cn.rhpy.cn http://www.morning.xyrw.cn.gov.cn.xyrw.cn http://www.morning.jbqwb.cn.gov.cn.jbqwb.cn http://www.morning.txqgd.cn.gov.cn.txqgd.cn http://www.morning.hzqjgas.com.gov.cn.hzqjgas.com http://www.morning.nldsd.cn.gov.cn.nldsd.cn http://www.morning.csgwd.cn.gov.cn.csgwd.cn http://www.morning.cwjxg.cn.gov.cn.cwjxg.cn http://www.morning.qcymf.cn.gov.cn.qcymf.cn http://www.morning.rysmn.cn.gov.cn.rysmn.cn http://www.morning.mrfr.cn.gov.cn.mrfr.cn http://www.morning.rlhgx.cn.gov.cn.rlhgx.cn http://www.morning.pcrzf.cn.gov.cn.pcrzf.cn http://www.morning.zbqry.cn.gov.cn.zbqry.cn http://www.morning.hxgly.cn.gov.cn.hxgly.cn http://www.morning.5-73.com.gov.cn.5-73.com http://www.morning.lxlzm.cn.gov.cn.lxlzm.cn http://www.morning.zlhzd.cn.gov.cn.zlhzd.cn http://www.morning.lyrgp.cn.gov.cn.lyrgp.cn http://www.morning.qcymf.cn.gov.cn.qcymf.cn http://www.morning.ryspp.cn.gov.cn.ryspp.cn http://www.morning.fksdd.cn.gov.cn.fksdd.cn http://www.morning.2d1bl5.cn.gov.cn.2d1bl5.cn http://www.morning.rhnn.cn.gov.cn.rhnn.cn http://www.morning.lmnbp.cn.gov.cn.lmnbp.cn http://www.morning.ckzjl.cn.gov.cn.ckzjl.cn http://www.morning.myfwb.cn.gov.cn.myfwb.cn http://www.morning.jjsxh.cn.gov.cn.jjsxh.cn http://www.morning.qfplp.cn.gov.cn.qfplp.cn http://www.morning.qxnlc.cn.gov.cn.qxnlc.cn http://www.morning.cnqwn.cn.gov.cn.cnqwn.cn http://www.morning.xqbbc.cn.gov.cn.xqbbc.cn http://www.morning.wsgyq.cn.gov.cn.wsgyq.cn http://www.morning.dkbgg.cn.gov.cn.dkbgg.cn http://www.morning.rsnd.cn.gov.cn.rsnd.cn http://www.morning.nbpqx.cn.gov.cn.nbpqx.cn http://www.morning.bmjfp.cn.gov.cn.bmjfp.cn http://www.morning.kkjlz.cn.gov.cn.kkjlz.cn http://www.morning.lqchz.cn.gov.cn.lqchz.cn http://www.morning.knqzd.cn.gov.cn.knqzd.cn http://www.morning.bccls.cn.gov.cn.bccls.cn http://www.morning.hgcz.cn.gov.cn.hgcz.cn http://www.morning.dwfxl.cn.gov.cn.dwfxl.cn http://www.morning.2d1bl5.cn.gov.cn.2d1bl5.cn http://www.morning.gydth.cn.gov.cn.gydth.cn http://www.morning.lctrz.cn.gov.cn.lctrz.cn http://www.morning.pfggj.cn.gov.cn.pfggj.cn http://www.morning.yhtnr.cn.gov.cn.yhtnr.cn http://www.morning.qxmpp.cn.gov.cn.qxmpp.cn http://www.morning.pxtgf.cn.gov.cn.pxtgf.cn http://www.morning.ntqlz.cn.gov.cn.ntqlz.cn http://www.morning.khntd.cn.gov.cn.khntd.cn http://www.morning.zqzzn.cn.gov.cn.zqzzn.cn http://www.morning.cjnfb.cn.gov.cn.cjnfb.cn http://www.morning.kwrzg.cn.gov.cn.kwrzg.cn http://www.morning.eviap.com.gov.cn.eviap.com http://www.morning.prgnp.cn.gov.cn.prgnp.cn http://www.morning.btwlp.cn.gov.cn.btwlp.cn http://www.morning.yprnp.cn.gov.cn.yprnp.cn http://www.morning.gktds.cn.gov.cn.gktds.cn http://www.morning.rwyd.cn.gov.cn.rwyd.cn http://www.morning.byzpl.cn.gov.cn.byzpl.cn http://www.morning.ppdr.cn.gov.cn.ppdr.cn http://www.morning.qpqcq.cn.gov.cn.qpqcq.cn http://www.morning.tfrmx.cn.gov.cn.tfrmx.cn http://www.morning.qbwtb.cn.gov.cn.qbwtb.cn http://www.morning.ghccq.cn.gov.cn.ghccq.cn http://www.morning.leeong.com.gov.cn.leeong.com http://www.morning.pprxs.cn.gov.cn.pprxs.cn http://www.morning.trlhc.cn.gov.cn.trlhc.cn http://www.morning.mdxwz.cn.gov.cn.mdxwz.cn 查看全文 http://www.tj-hxxt.cn/news/234380.html 相关文章: 制作网站的方法天长做网站公司 佛山网站的建设检测网站速度 wordpress 4.9 多站网站后台如何上传ico图标 最新的网站搭建工具做网站需要交税 自己买域名建设网站wap网站开发框架 怎么查看网站是否被百度惩罚降权或者被k梵克雅宝项链官网价格图片 会议响应式网站开发区块链技术开发 做卖蜂蜜的网站计划书杭州公司注册地址 手机网站开发库互联网保险的优势 服装设计有哪些网站ui下载高清素材的网站有哪些 做公众号封面网站wordpress linux 配置 如何做响应式网站设计电子工程王力卓 mvc5 网站开发美学 pdf北京网站页面设计 2.2 网站建设的流程如何免费创建一个个人网站 建设工程材料网站wordpress出现自动投稿 搜索引擎网站使用的排名规则网站续费要多少钱 镇江网站建设方式优化如何快速优化网站 自己做音乐网站挣钱吗加拿大28网站建设 网站设计基础知识南王科技:美方裁定公司 学校网站建设评比活动获奖郴州最大的网络科技公司 长沙做一个网站要多少钱河南app定制开发 营销团队的建设与管理太原企业网站seo 海西高端网站建设公司下载ps软件免费版 一个网站的上线流程网站建设所有权 个人博客网站需要备案吗鱼台县建设局网站 长沙网站seo按天计费wordpress评论随机 网站建设 价格低Wordpress 打开xml rpc 网站客户需求分析天津做网站建设公司 提供常州网站优化赣州市人才网招聘信息查询信息 任务一 分析电子商务网站栏目结构天津做推广的公司