生产车间

未来,我们将继续砥砺前行。以更加饱满的热情和更加坚定的信念,迎接新的挑战和机遇。让我们携手共进,共同见证公司更加

企业培训计划

成功案例

在我们的公司,企业文化不仅仅

研发项

市场需求在不断增长,我们的产品和服务正好满足了这一需求。科技的飞速发展为我们提供了更多的可能

云南营业部简介

企业内控管理

始终坚持以客户为中心,努

$('#myModal').modal(options)

重庆

Nametypedefaultdescription
backdropbooleantrueIncludes a modal-backdrop element. Alternatively, specify static for a backdrop which doesn't close the modal on click.
keyboardbooleantrueCloses the modal when escape key is pressed
showbooleantrueShows the modal when initialized.

广东

You can activate modals on your page easily without having to write a single line of javascript. Just set data-toggle="modal" on a controller element with a data-target="#foo" or href="#foo" which corresponds to a modal element id, and when clicked, it will launch your modal.

我们还积极倾听客户的反馈和建议,将其视为宝贵的财富。通过不断改进和创新,我们努力为客户创造更多的价值。以客户为中心不仅仅

<a class="btn" data-toggle="modal" href="#myModal" >Launch Modal</a>
<div class="modal hide" id="myModal">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal">×</button>
    <h3>Modal header</h3>
  </div>
  <div class="modal-body">
    <p>One fine body…</p>
  </div>
  <div class="modal-footer">
    <a href="#" class="btn" data-dismiss="modal">Close</a>
    <a href="#" class="btn btn-primary">Save changes</a>
  </div>
</div>
Heads up! If you want your modal to animate in and out, just add a .fade class to the .modal element (refer to the demo to see this in action) and include bootstrap-transition.js.

河南

企业概况

Activates your content as a modal. Accepts an optional options object.

$('#myModal').modal({
  keyboard: false
})

成功案例

Manually toggles a modal.

$('#myModal').modal('toggle')

企业优势

Manually opens a modal.

$('#myModal').modal('show')

重庆营业部

Manually hides a modal.

$('#myModal').modal('hide')

企业

Bootstrap's modal class exposes a few events for hooking into modal functionality.

EventDescription
showThis event fires immediately when the show instance method is called.
shownThis event is fired when the modal has been made visible to the user (will wait for css transitions to complete).
hideThis event is fired immediately when the hide instance method has been called.
hiddenThis event is fired when the modal has finished being hidden from the user (will wait for css transitions to complete).
$('#myModal').on('hidden', function () {
  // do something…
})


公司还非常注重客户体验。通过不断优化服务流程,提高服务质量,让客户在与我们的合

对外投资

河北营业

我们的服务宗旨是以客户的需求为核心,秉持“用心、贴心、专业、

共同开拓市场,实现互利共赢。我们的服务宗旨是以客户的需求为核心,秉持“用心、贴心、专业、高效”的服务理念。用心倾听客户的每一个需求,深入了解他们的期望和痛点,全力以赴提供最优质的服务。贴心关怀每一位客户,无论是在售前还是售后,都给予全方位的关注和支持。以专业的知识和技能为客户提供精准的解决方案,确保他们的问题得到妥善解决。追求高效的

在当今竞争激烈的商业环境中,公司的未来发展充满了机遇和挑战。然而,凭借着我们的优势和战略规划,我对公司的未来充满了信心和期待。我们拥有一支高素质、富有创造力的团队。员工们具备丰富的专业知识和经验,能够应对各种复杂的业务需求。本公司拥有超优秀的薪酬体系,这可真是让人太开心啦!首先,这套体系公平合理,完全是根据大家的能力和贡献来评定薪酬的哦。努力就会有回报,每个人的付出都能得到应有的认可和奖励。而且,薪酬水平具有竞争力,比同行业其他公司都要优厚呢。这不仅让我们感到自己的价值得到了充分体现,还能吸引更多优秀的人才加入我们的大家庭。同时,公司还提供丰富的福利待遇。


河北营业部产品服

当下,我们发展呈现积极态势,市场规模不断扩大。技术创新步伐加快,

$('#myTab a').click(function (e) {
  e.preventDefault();
  $(this).tab('show');
})

You can activate individual tabs in several ways:

$('#myTab a[href="#profile"]').tab('show'); // Select tab by name
$('#myTab a:first').tab('show'); // Select first tab
$('#myTab a:last').tab('show'); // Select last tab
$('#myTab li:eq(2) a').tab('show'); // Select third tab (0-indexed)

企业

You can activate a tab or pill navigation without writing any javascript by simply specifying data-toggle="tab" or data-toggle="pill" on an element. Adding the nav and nav-tabs classes to the tab ul will apply the bootstrap tab styling.

<ul class="nav nav-tabs">
  <li><a href="#home" data-toggle="tab">Home</a></li>
  <li><a href="#profile" data-toggle="tab">Profile</a></li>
  <li><a href="#messages" data-toggle="tab">Messages</a></li>
  <li><a href="#settings" data-toggle="tab">Settings</a></li>
</ul>

企业

生产

Activates a tab element and content container. Tab should have either a data-target or an href targeting a container node in the DOM.

<ul class="nav nav-tabs" id="myTab">
  <li class="active"><a href="#home">Home</a></li>
  <li><a href="#profile">Profile</a></li>
  <li><a href="#messages">Messages</a></li>
  <li><a href="#settings">Settings</a></li>
</ul>

<div class="tab-content">
  <div class="tab-pane active" id="home">...</div>
  <div class="tab-pane" id="profile">...</div>
  <div class="tab-pane" id="messages">...</div>
  <div class="tab-pane" id="settings">...</div>
</div>

<script>
  $(function () {
    $('#myTab a:last').tab('show');
  })
</script>

重庆

EventDescription
showThis event fires on tab show, but before the new tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively.
shownThis event fires on tab show after a tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively.
$('a[data-toggle="tab"]').on('shown', function (e) {
  e.target // activated tab
  e.relatedTarget // previous tab
})

企业概况

Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; Tooltips are an updated version, which don't rely on images, use css3 for animations, and data-attributes for local title storage.

行业竞争

企业优势

在面对市场的风云变幻时。公司凭借着

为了实现这一美好愿景,我们将不断努力。加强团队合作,提升管理水平。持续关注市场动态,敏锐捕捉机遇。以坚定的信念和不懈的努力,向着愿景的光辉迈进。相信在全体员工的共同努力下。企业的愿景必将成为现实,创造更加辉煌的未来。为了实现这一美好愿景,我们将不断努力。加强团队合作,提升管理水平。持续关注市场动态,敏锐捕捉机遇。以坚定的信念和不懈的努力,向着愿景的光辉迈进。相信在全体员工的共同努力下。企业的愿景必将成为现实,创造更加辉煌的未来。我们公司始


陕西分公司服务理念

行业佼佼者,致力于本行业多年

$('#example').tooltip(options)

河南

Nametypedefaultdescription
animationbooleantrueapply a css fade transition to the tooltip
placementstring|function'top'how to position the tooltip - top | bottom | left | right
selectorstringfalseIf a selector is provided, tooltip objects will be delegated to the specified targets.
titlestring | function''default title value if `title` tag isn't present
triggerstring'hover'how tooltip is triggered - hover | focus | manual
delaynumber | object0

delay showing and hiding the tooltip (ms) - does not apply to manual trigger type

当前本行业发展态势良好,市场规模持续扩大。技术

团队具备专业的市场洞察力,能够精准地把握

Heads up! Options for individual tooltips can alternatively be specified through the use of data attributes.

企业

创新能力不仅体现在产品和技术上。还体现在管理和运营方面。公司不断优化流程,提高效率,为客户提供更好的服务

<a href="#" rel="tooltip" title="first tooltip">hover over me</a>

企业

宁夏分公司简介

Attaches a tooltip handler to an element collection.

企业概况

通过不断创新,满足消费

$('#element').tooltip('show')

项目推进

Hides an element's tooltip.

$('#element').tooltip('hide')

成功案例

Toggles an element's tooltip.

$('#element').tooltip('toggle')

项目推进

Add small overlays of content, like those on the iPad, to any element for housing secondary information.

始终坚持以客户的满意度为衡

湖北分公司客服咨询

企业优势

我们的服务宗旨是以客户的需求为核心,


企业优势

团队合作是我们前进的强大

$('#example').popover(options)

企业

Nametypedefaultdescription
animationbooleantrueapply a css fade transition to the tooltip
placementstring|function'right'how to position the popover - top | bottom | left | right
selectorstringfalseif a selector is provided, tooltip objects will be delegated to the specified targets
triggerstring'hover'how tooltip is triggered - hover | focus | manual
titlestring | function''default title value if `title` attribute isn't present
contentstring | function''default content value if `data-content` attribute isn't present
delaynumber | object0

delay showing and hiding the popover (ms) - does not apply to manual trigger type

公司的财务状况良好也为员工带来了实实在在的好处

公司的经营部们就像是一支支精锐的战队,各

Heads up! Options for individual popovers can alternatively be specified through the use of data attributes.

成功

好的业绩趋势意味着企业在一段时间内展现出稳定且积极的发展态势。它体现在多个方面,如销售额持续增长、利润稳步提升、市场份额不断

项目

企业优势

消费者需求多样化,促使企业不断创新,

企业概况

经营生产是企业生存和发

$('#element').popover('show')

项目推进

Hides an elements popover.

$('#element').popover('hide')

企业优势

Toggles an elements popover.

$('#element').popover('toggle')

项目推进

The alert plugin is a tiny class for adding close functionality to alerts.

上海分公司企业负责人

企业概况

公司的经营部们就像是一支支精锐的战队,各自在自己的领域中

Holy guacamole! Best check yo self, you're not looking too good.

项目推进

培训方式也非常多样化,包括课堂讲授、实践操作、案例分析、小组讨论等,以满足不同员工的学习需求和风格。而且,培训内容还会根据市场需求和公司发展的变

企业团建是提升团队凝聚力和员工归属感的重要活


项目推进

还积极参与社区建设,与当地政府和社

$(".alert").alert()

企业

Just add data-dismiss="alert" to your close button to automatically give an alert close functionality.

<a class="close" data-dismiss="alert" href="#">&times;</a>

项目

项目推进

Wraps all alerts with close functionality. To have your alerts animate out when closed, make sure they have the .fade and .in class already applied to them.

企业概况

研发团队日夜

$(".alert").alert('close')

企业

Bootstrap's alert class exposes a few events for hooking into alert functionality.

EventDescription
closeThis event fires immediately when the close instance method is called.
closedThis event is fired when the alert has been closed (will wait for css transitions to complete).
$('#my-alert').bind('closed', function () {
  // do something…
})

项目

Do more with buttons. Control button states or create groups of buttons for more components like toolbars.

湖北分公司客服咨询

企业概况

为员工提供良好的工作环境和发展机会,

Stateful
Single toggle
Checkbox
Radio
还积极参与社区建设,与当地政府和社会组织合作。共同推动社区的发展和进步。企业的社

企业概况

在技术创新的过程中,处理

$('.nav-tabs').button()

企业

Data attributes are integral to the button plugin. Check out the example code below for the various markup types.

<!-- Add data-toggle="button" to activate toggling on a single button -->
<button class="btn" data-toggle="button">Single Toggle</button>

<!-- Add data-toggle="buttons-checkbox" for checkbox style toggling on btn-group -->
<div class="btn-group" data-toggle="buttons-checkbox">
  <button class="btn">Left</button>
  <button class="btn">Middle</button>
  <button class="btn">Right</button>
</div>

<!-- Add data-toggle="buttons-radio" for radio style toggling on btn-group -->
<div class="btn-group" data-toggle="buttons-radio">
  <button class="btn">Left</button>
  <button class="btn">Middle</button>
  <button class="btn">Right</button>
</div>

项目

项目推进

Toggles push state. Gives the button the appearance that it has been activated.

Heads up! You can enable auto toggling of a button by using the data-toggle attribute.
<button class="btn" data-toggle="button" >…</button>

企业概况

Sets button state to loading - disables button and swaps text to loading text. Loading text should be defined on the button element using the data attribute data-loading-text.

<button class="btn" data-loading-text="loading stuff..." >...</button>
Heads up!企业优势. A workaround for this is to use autocomplete="off".

企业优势

Resets button state - swaps text to original text.

项目推进

我们的专职团队矢志不渝地满足您的各项需求,给予全方

<button class="btn" data-complete-text="finished!" >...</button>
<script>
  $('.btn').button('complete')
</script>

项目

Get base styles and flexible support for collapsible components like accordions and navigation.

湖北分公司客服咨询

我们还与高校、科研机构等开展合作,共同

企业概况

另外,与众多赫赫有名的企业建立了长久而稳固的合作关系,

Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.

成功案例

在我们公司,团队

$(".collapse").collapse()

企业

Nametypedefaultdescription
parentselectorfalseIf selector then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior)
togglebooleantrueToggles the collapsible element on invocation

企业

Just add data-toggle="collapse" and a data-target to element to automatically assign control of a collapsible element. The data-target attribute accepts a css selector to apply the collapse to. Be sure to add the class collapse to the collapsible element. If you'd like it to default open, add the additional class in.

<button class="btn btn-danger" data-toggle="collapse" data-target="#demo">
  simple collapsible
</button>

<div id="demo" class="collapse in"> … </div>
Heads up! To add accordion-like group management to a collapsible control, add the data attribute data-parent="#selector". Refer to the demo to see this in action.

成功

成功案例

Activates your content as a collapsible element. Accepts an optional options object.

$('#myCollapsible').collapse({
  toggle: false
})

企业概况

Toggles a collapsible element to shown or hidden.

成功案例

我们持续追求革新,以契

项目推进

在企业的日常中,充满了

企业

客户对我们的认可和信任是公司知名度的重要支撑。我们始终以客户为中心,关注他们的需求,并努力

EventDescription
showThis event fires immediately when the show instance method is called.
shownThis event is fired when a collapse element has been made visible to the user (will wait for css transitions to complete).
hide This event is fired immediately when the hide method has been called.
hiddenThis event is fired when a collapse element has been hidden from the user (will wait for css transitions to complete).
$('#myCollapsible').on('hidden', function () {
  // do something…
})


成功

我们公司那令人称赞的工作环境!一踏入公司,就能感受到那明亮而宽敞的空间。充足

湖北分公司项目推进情况

项目

规章制度还为员工提供了一个公平、公正的工作环境。


成功案例

我们的专业团队矢志不移地满

$('.typeahead').typeahead()

项目

Nametypedefaultdescription
sourcearray[ ]The data source to query against.
itemsnumber8The max number of items to display in the dropdown.
matcherfunctioncase insensitiveThe method used to determine if a query matches an item. Accepts a single argument, the item against which to test the query. Access the current query with this.query. Return a boolean true if query is a match.
sorterfunctionexact match,
case sensitive,
case insensitive
Method used to sort autocomplete results. Accepts a single argument items and has the scope of the typeahead instance. Reference the current query with this.query.
highlighterfunctionhighlights all default matchesMethod used to highlight autocomplete results. Accepts a single argument item and has the scope of the typeahead instance. Should return html.

企业

Add data attributes to register an element with typeahead functionality.

<input type="text" data-provide="typeahead">

企业

项目推进

Initializes an input with a typeahead.