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

公司的网站建设jnzji如何简单制作自己的网站

公司的网站建设jnzji,如何简单制作自己的网站,网站建设费算广告费吗,wordpress去掉generator很高兴在雪易的CSDN遇见你 #xff0c;给你糖糖 欢迎大家加入雪易社区-CSDN社区云 前言 本文分享QT控件QTabWidgetQTabBar的样式设计#xff0c;介绍两者可以自定义的内容#xff0c;以及如何定义#xff0c;希望对各位小伙伴有所帮助#xff01; 感谢各位小伙伴…很高兴在雪易的CSDN遇见你 给你糖糖 欢迎大家加入雪易社区-CSDN社区云  前言 本文分享QT控件QTabWidgetQTabBar的样式设计介绍两者可以自定义的内容以及如何定义希望对各位小伙伴有所帮助 感谢各位小伙伴的点赞关注小易会继续努力分享一起进步 你的点赞就是我的动力()ノ~ 我将收获到的 1. 2. 3. 目录 1.  2. 3. 1. QTabWidget可自定义内容 》QTabWidget::pane{} 定义tabWidgetFrame 》QTabWidget::tab-bar{} 定义TabBar的位置 》QTabWidget::tab{}定义Tab的样式 》QTabWidget::tab:selected{}定义Tab被选中时的样式 》QTabWidget::tab:hover{}定义Tab鼠标悬停时的样式 》QTabWidget::tab:!selected{}定义Tab在非选中时的样式 2. QTabBar可自定义内容 》QTabBar::tear{} 》QTabBar::scroller{} 》QTabBar QToolButton{} 定义QTabBar下的QToolButton的样式 》QTabBar QToolButton::right-arrow{} /* the arrow mark in the tool buttons */ 》QTabBar QToolButton::left-arrow{} 》QTabBar::close-button{} 》QTabBar::close-button:hover{} 3. 可直接复制的QTableWidget样式 》雪易样式 /*style-dark*/ QTabWidget::pane { /* The tab widget frame */border: 1px solid #00BB9E;border-radius:5px;}QTabWidget::tab-bar {alignment: right; }/* Style the tab using the tab sub-control. Note thatit reads QTabBar _not_ QTabWidget */ QTabBar::tab {background: #D3D3D3;/*qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);*/border: none;border-top-left-radius: 4px;border-top-right-radius: 4px;min-width: 80px;padding: 8px;color:#000000; }QTabBar::tab:selected, QTabBar::tab:hover {background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #fafafa, stop: 1.0 #00BB9E);}/**/QTabBar::tab:selected {border: 1px solid #00BB9E;/*border-bottom-color: #00BB9E; same as pane color*/ } 》QT提供样式1 QTabWidget::pane { /* The tab widget frame */border-top: 2px solid #C2C7CB; }QTabWidget::tab-bar {left: 5px; /* move to the right by 5px */ }/* Style the tab using the tab sub-control. Note thatit reads QTabBar _not_ QTabWidget */ QTabBar::tab {background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);border: 2px solid #C4C4C3;border-bottom-color: #C2C7CB; /* same as the pane color */border-top-left-radius: 4px;border-top-right-radius: 4px;min-width: 8ex;padding: 2px; }QTabBar::tab:selected, QTabBar::tab:hover {background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #fafafa, stop: 0.4 #f4f4f4,stop: 0.5 #e7e7e7, stop: 1.0 #fafafa); }QTabBar::tab:selected {border-color: #9B9B9B;border-bottom-color: #C2C7CB; /* same as pane color */ }QTabBar::tab:!selected {margin-top: 2px; /* make non-selected tabs look smaller */ } 》QT提供样式2 QTabWidget::pane { /* The tab widget frame */border-top: 2px solid #C2C7CB; }QTabWidget::tab-bar {left: 5px; /* move to the right by 5px */ }/* Style the tab using the tab sub-control. Note thatit reads QTabBar _not_ QTabWidget */ QTabBar::tab {background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);border: 2px solid #C4C4C3;border-bottom-color: #C2C7CB; /* same as the pane color */border-top-left-radius: 4px;border-top-right-radius: 4px;min-width: 8ex;padding: 2px; }QTabBar::tab:selected, QTabBar::tab:hover {background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #fafafa, stop: 0.4 #f4f4f4,stop: 0.5 #e7e7e7, stop: 1.0 #fafafa); }QTabBar::tab:selected {border-color: #9B9B9B;border-bottom-color: #C2C7CB; /* same as pane color */ }QTabBar::tab:!selected {margin-top: 2px; /* make non-selected tabs look smaller */ }/* make use of negative margins for overlapping tabs */ QTabBar::tab:selected {/* expand/overlap to the left and right by 4px */margin-left: -4px;margin-right: -4px; }QTabBar::tab:first:selected {margin-left: 0; /* the first selected tab has nothing to overlap with on the left */ }QTabBar::tab:last:selected {margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ }QTabBar::tab:only-one {margin: 0; /* if there is only one tab, we dont want overlapping margins */ } 》QT提供样式3 QTabWidget::pane { /* The tab widget frame */border-top: 2px solid #C2C7CB;position: absolute;top: -0.5em; }QTabWidget::tab-bar {alignment: center; }/* Style the tab using the tab sub-control. Note thatit reads QTabBar _not_ QTabWidget */ QTabBar::tab {background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);border: 2px solid #C4C4C3;border-bottom-color: #C2C7CB; /* same as the pane color */border-top-left-radius: 4px;border-top-right-radius: 4px;min-width: 8ex;padding: 2px; }QTabBar::tab:selected, QTabBar::tab:hover {background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #fafafa, stop: 0.4 #f4f4f4,stop: 0.5 #e7e7e7, stop: 1.0 #fafafa); }QTabBar::tab:selected {border-color: #9B9B9B;border-bottom-color: #C2C7CB; /* same as pane color */ } 结论 本文介绍了QTabWidget和QTabBar在进行样式设计时可设置的选项并给出了几个示例各位小伙伴可以自行选择 感谢各位小伙伴的点赞关注小易会继续努力分享一起进步 你的赞赏是我的最最最最大的动力()ノ~
http://www.dnsts.com.cn/news/137389.html

相关文章:

  • 微网站开发 课程标准wordpress访客主机名
  • 嘉兴商城网站开发设计哪家企业的网站做的好
  • 网站恶意点击软件敦煌手机网站设计
  • 做网站模板和服务器是一样的吗wordpress jplayer
  • 河北平台网站建设价位网络营销实践总结报告
  • 漳州市城乡住房建设局网站北京 网站设计招聘信息
  • 学校网站怎么查询录取免费企业自助建站
  • 2_网站建设的一般步骤包含哪些wordpress购物车显示
  • 网上电影网站怎么做的合肥市网站建设公司
  • 做设计英文网站WordPress在线转义
  • 网站开发里程碑备案个人网站做淘宝客
  • 网站建设使用的工具自己建一个简单的网站
  • 如何入侵网站服务器手机网站html模板
  • 合肥市建设建筑网站企业官网有哪些网站
  • 多个网站域名 是新增接入网站建设软件开发公司
  • 龙岗网站建设过程建筑公司网站被投诉违反广告法
  • 中老年适合在哪个网站做直播莱州网络推广
  • seo整站优化更能准确获得客户百度手机点击排名工具
  • 网站主题模板制作网站怎么做关键词排名
  • 南充建设网站wordpress 扒站
  • js网站记住密码怎么做自己建免费网站
  • 给素材网站做签约设计不想做了点赞排行 wordpress 主题
  • 行业前10的网站建设字体设计转换器
  • 网站备案在哪个部门上海建筑设计公司排名前10
  • 永州公司网站建设定西市建设局官方网站
  • react.js做的网站专门做签到的网站
  • jsp网站开发的环境要求建设工程合同的概念
  • wordpress页面和分类目录惠州市seo网站设计
  • 没有网站如何做adsense给我播放个免费的片
  • 建设一个招聘网站wordpress修改了访问地址