Hongmu Notes
Home Language Notes jQuery modifies the height-to-width ratio of the banner display in real time
Language Notes JavaScript

jQuery modifies the height-to-width ratio of the banner display in real time

jQuery modifies the height-to-width ratio of the banner display in real time

Recently, I encountered some problems when modifying the PC side to a responsive template.

For the slides on the PC, they do not use the img tag to display them directly. Instead, they use a li tag and then set a background image for the li tag.

And set a fixed height for the background image.

So I found that if I want to control the height of this slide by writing css, it is better to control it directly with js.

function setFlashHeight() {
  if ($(window).width() < 1200) {
    var screenWidth = $(window).width();
    var newHeight = (screenWidth / 1920) * 500;

    $('.flash, .flash .flexslider, .flash .flexslider .slides li').css('height', newHeight + 'px');
  } else {
    $('.flash, .flash .flexslider, .flash .flexslider .slides li').css('height', '');
  }
}

$(document).ready(function() {
  setFlashHeight();
});

$(window).resize(function() {
  setFlashHeight();
});

This code defines asetFlashHeight()function to set.flash.flash .flexslider.flash .flexslider .slides liThe height of the element. exist$(document).ready()function, it will first call this function to perform an initial verification. Then, use$(window).resize()function to listen for window size changes and call this function again each time it changes.

In this way, when the page is loaded, an initial validation will be automatically performed to ensure that the height of the element is correct in the initial state. When the window size changes, the corresponding height is automatically applied.

When using it, you only need to proportion the box that needs to be adjusted in height and modify the height of the box that needs to be changed.

微信赞赏

WeChat

支付宝赞赏

Alipay

✍️ Author: Hong Mu

webmaster · Thanks for reading, stay tuned for more exciting content

Author homepage View home page →

Related articles

js move the mouse up to modify the style attribute

js move the mouse up to modify the style attribute Language Notes JavaScript

When the mouse hovers over the element, the color changes to red; when the mouse leaves the element, the color changes to black. To retrieve an element by its ID: `document.getElementById()`; Event handler for mouse hover: `onmouseover`; Event handler for mouse leave: `onmouseout`.<!DOCTYPE html><html lang= "en">...
👁 130

Recommended reading

Environmental water governance website template 0733

Environmental water governance website template 0733 Practical Collection Yiyou template

This set of eyoucms templates is suitable for the environmental water treatment industry. The design style is professional and environmentally friendly, and can display water treatment projects, water treatment projects and technical solutions. It helps environmental water companies demonstrate their strength online and attract government and corporate customers. Template display Installation instructions Website backend: /login.php Account: admin Password: admin Related articles Summary of common problems in the installation of Yiyou CMS Yiyou CMS (Ey...
👁 48
Acoustic sound insulation decoration engineering company website template 0106

Acoustic sound insulation decoration engineering company website template 0106 Practical Collection Yiyou template

This set of eyoucms templates is suitable for acoustics, sound insulation and decoration engineering companies. The design style is professional and technological, and can display acoustic materials, sound insulation engineering cases and technical solutions. It helps acoustic decoration companies to demonstrate their technical strength online and attract construction and venue customers. Template display Installation instructions Website backend: /login.php Account: admin Password: admin Related articles Summary of common problems in Yiyou CMS installation Yiyou C...
👁 41
(PC+WAP) Education consulting service website pbootcms template Education and training study abroad institution website source code download 0658

(PC+WAP) Education consulting service website pbootcms template Education and training study abroad institution website source code download 0658 Practical Collection pbootcms Template

A PbootCMS website template for the education consulting, study abroad and training institution industries, suitable for both PC and mobile terminals. The design style is simple and professional, focusing on information display. The template has built-in modules such as study abroad projects, school introductions, and online consultation, which helps educational service institutions to efficiently build official brand websites and obtain potential customers. Template display Installation instructions Website backend:/admin.php Account: admin Password: ad...
👁 40
(PC+WAP) Engineering machinery and equipment website pbootcms template Mechanical equipment website source code download 0042

(PC+WAP) Engineering machinery and equipment website pbootcms template Mechanical equipment website source code download 0042 Practical Collection pbootcms Template

A PbootCMS website template suitable for the construction machinery and general equipment industry, supporting PC and WAP access. The design style is simple and professional, which can well display various mechanical equipment such as excavators and loaders. The template has built-in product center, application cases and after-sales service modules, making it an efficient choice for machinery and equipment companies to build official brand websites. Template display Installation instructions Website backend:/admin.php Account: admin Password...
👁 54
Marketing-oriented plastic sheet purification and environmental protection equipment website template – 0734

Marketing-oriented plastic sheet purification and environmental protection equipment website template – 0734 Practical Collection Yiyou template

An EyouCMS website template designed for enterprises specializing in marketing-oriented plastic sheet products and environmental purification equipment. Its eco-friendly design is ideal for showcasing plastic sheet products, purification equipment, and technical solutions. This template helps environmental materials companies showcase their products online and attract industrial customers. Template Demo | Installation Instructions | Website Backend: /login.php | Username: admin | Password: admin | Related Articles: Summary of Common Installation Issues for EyouCMS | Eyou...
👁 47
Responsive industrial and commercial registration financial service agency accounting website template 0107

Responsive industrial and commercial registration financial service agency accounting website template 0107 Practical Collection Yiyou template

An eyoucms responsive website template for industrial and commercial registration, financial services and agency accounting companies. The design style is professional and rigorous, and can display industrial and commercial registration, financial and tax agency services and successful cases. It helps financial and taxation service agencies attract entrepreneurial business customers online. Template display Installation instructions Website backend: /login.php Account: admin Password: admin Related articles Summary of common problems in Yiyou CMS installation Yi...
👁 49