search
HomeBackend DevelopmentPHP TutorialUse PHP and CSS to change the text size of web pages_PHP tutorial
Use PHP and CSS to change the text size of web pages_PHP tutorialJul 13, 2016 am 10:30 AM
cssphpuseandexistsizeChangeletterhourusenetWeb pagedesign

Use PHP and CSS to change web page text size - When designing a website, keep one thing in mind: not all visitors are bright young people, and they are not necessarily fully familiar with web browsers various ways of using it.

When designing a website, keep one thing in mind: not all visitors are energetic young people, and they are not necessarily fully familiar with the various methods of using web browsers. Smart designers understand this and often incorporate various special accessibility features into the design of websites so that even seniors or people with disabilities can use the website easily and comfortably without having to expend extra effort.

Text sizer is one of the most effective accessibility features that any website may need. In short, it is a tool used to change the text size of a web page. It is usually used to make the text larger so that Easy to read, many browsers already have this feature, but beginners of web browsers do not know how to use this feature. Therefore, website designers often put easier-to-use buttons on each web page to achieve this. this function.

This guide will show you how to add this functional text sizer to your web pages using PHP and CSS, so hurry up and add this accessibility to your website to make it accessible to people aged 50 and over. Earn praise points from users and read on to learn how to use it.

NOTE: This guide assumes you have Apache and PHP installed

How does it work?

Before writing code, it’s helpful to spend some time understanding how the text sizer works. Each page on the site contains a series of controls that allow the user to select the page's text size: Small, Medium, and Large. Each font size corresponds to a CSS style sheet that saves the text used for the page. Rules for rendering web page text sizes.

When the user makes a selection, PHP stores the font size selected by the user in a session variable, and then reloads the web page. The page will read the selected font size from the session variable and dynamically call the corresponding style. Table to re-render the web page with a smaller or larger font size.

Process

Step 1: Create a web page

Starting from creating an HTML document, first complete the content of the placeholder. List A is an example:

List A:

Text size: small | href="resize.php?s=medium">medium | large

Loremipsum dolor sit amet,

Magna aliqua. Utenim

commodoconsequat.

 Duisauteirure dolor in reprehenderit in

Voluptatevelitessecillumdoloreeufugiatnullapariatur.

 Excepteursintoccaecatcupidatat non proident, sunt in culpa qui

 officiadeseruntmollitanim id estlaborum.

Pay special attention to the text hyperlinks at the top of the page. Each hyperlink points to a script file named resize.php and passes the selected font size to it via the URL GET method.

Save this document in your web server directory with a .php extension, for example, index.php.

Step 2: Create a style sheet

Next, create style sheet files for each text size: small.css, medium.css and large.css. This is the file content of small.css:

body {

Font: 10px

 }

Similarly, you can create medium.css and large.css, using 17px and 25px respectively, and save these style sheet files in the same directory as the web page created in the previous step.

Step 3: Create a text size changing mechanism

As introduced above, the web page can "know" which style sheet file to load by looking for predefined session variables. The session variables are controlled through the script file resize.php (see Listing B), which is the file in the user It is activated when you click the button to change the text size at the top of the web page. This is the content of resize.php:

List B

// start session

 // import selected size into session

session_start();

$_SESSION['textsize'] = $_GET['s'];

header("Location: " . $_SERVER['HTTP_REFERER']);

 ?>

This is very simple. When the user selects a new text size, resize.php obtains the font size value through the GET method and stores it in the session variable $_SESSION['textsize'], and then opens the browser Redirect to the originally opened page. [next]

Of course, there is still a component missing here: the intelligence allows the web page to automatically detect the text size currently selected by the user and load the corresponding style sheet. To add this function, open your web page file index.php and change The following statement is added to the beginning of the file (see Listing C):

List C

// start session

 // import variables

session_start();

// set default text size for this page

 if (!isset($_SESSION['textsi

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/767404.htmlTechArticleUse PHP and CSS to change the text size of web pages. When designing a website, keep one thing in mind: not all visitors They are all energetic young people, and they are not necessarily fully familiar with Web browsing...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

如何利用GitLab进行项目文档管理如何利用GitLab进行项目文档管理Oct 20, 2023 am 10:40 AM

如何利用GitLab进行项目文档管理一、背景介绍在软件开发过程中,项目文档是非常重要的资料,不仅能够帮助开发团队了解项目的需求和设计,还能提供给测试团队和客户参考。为了方便项目文档的版本控制和团队协作,我们可以利用GitLab来进行项目文档管理。GitLab是一个基于Git的版本控制系统,除了支持代码管理,还可以管理项目文档。二、GitLab环境搭建首先,我

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version