Home Web Front-end CSS Tutorial How to realize multi-style selection and real-time switching of styles_Experience exchange

How to realize multi-style selection and real-time switching of styles_Experience exchange

May 16, 2018 pm 02:42 PM

when we make a website, we hope that our website will have multiple styles. users can choose different styles according to their own preferences. such styles can be changes in layout, differences in color, or it is a style specially customized for different user groups.
how can we achieve multi-style selection and real-time switching of styles?
in fact, ie does not support this function. we can leave it to the browser. firefox supports this function.
suppose we have two sets of css, enclosed in two different files: a.css and b.css. then add the following two lines of xhtml code between

and :
<link rel="stylesheet" type="text/css" title="主题a" href="a.css?7.1.34" /> 
<link rel="alternate stylesheet" type="text/css" title="主题b" href="b.css?7.1.34" />
Copy after login

then open this page with your firefox and select in the menu bar: view-> page style, it should you can see "theme a" and "theme b" and select them in real time.
another method we can use is to use dynamic programs, such as asp, php, jsp, etc. the advantages of this are direct, efficient, good compatibility, and the ability to remember user choices. the user's selection can be recorded in cookies or directly written to the database. when the user visits again, the style selected on the previous visit will be directly called. we won’t go into details about the specific production here. you can pay attention to our website www.52css.com. we will launch content in this area from time to time.
what method should we use now? the mainstream browser ie does not support the method of letting the browser choose. how to implement it with a program script? when my webpage is static, there is no database.
we can only choose to use javascript to get it done. let’s look at the following code:

function setactivestylesheet(title) { 
var i, a, main; 
for(i=0; (a = document.getelementsbytagname("link")[i]); i++) { 
if(a.getattribute("rel").indexof("style") != -1 && a.getattribute("title")) { 
a.disabled = true; 
if(a.getattribute("title") == title) a.disabled = false; 
} 
} 
} 
function getactivestylesheet() { 
var i, a; 
for(i=0; (a = document.getelementsbytagname("link")[i]); i++) { 
if(a.getattribute("rel").indexof("style") != -1 && a.getattribute("title") && !a.disabled) return a.getattribute("title"); 
} 
return null; 
} 
function getpreferredstylesheet() { 
var i, a; 
for(i=0; (a = document.getelementsbytagname("link")[i]); i++) { 
if(a.getattribute("rel").indexof("style") != -1 
&& a.getattribute("rel").indexof("alt") == -1 
&& a.getattribute("title") 
) return a.getattribute("title"); 
} 
return null; 
} 
function createcookie(name,value,days) { 
if (days) { 
var date = new date(); 
date.settime(date.gettime()+(days*24*60*60*1000)); 
var expires = "; expires="+date.togmtstring(); 
} 
else expires = ""; 
documents.cookie = name+"="+value+expires+"; path=/"; 
} 
function readcookie(name) { 
var nameeq = name + "="; 
var ca = documents.cookie.split(';'); 
for(var i=0;i < ca.length;i++) { 
var c = ca[i]; 
while (c.charat(0)==' ') c = c.substring(1,c.length); 
if (c.indexof(nameeq) == 0) return c.substring(nameeq.length,c.length); 
} 
return null; 
} 
window.onload = function(e) { 
var cookie = readcookie("style"); 
var title = cookie ? cookie : getpreferredstylesheet(); 
setactivestylesheet(title); 
} 
window.onunload = function(e) { 
var title = getactivestylesheet(); 
createcookie("style", title, 365); 
} 
var cookie = readcookie("style"); 
var title = cookie ? cookie : getpreferredstylesheet(); 
setactivestylesheet(title);
Copy after login

the above code is a javascript script that implements multi-style selection and real-time style switching. we can save the above code as a js file and display it on the required page. direct quote:

<script type="text/javascript" src="cssturn.js?7.1.34"></script>
Copy after login

of course, you can also write the above code directly inside the page.
we have three styles, one defaults to the other two styles. introduce these three css files into the page file:

<link rel="stylesheet" type="text/css" href="css.css?7.1.34" /> 
<link rel="stylesheet" type="text/css" href="aaa.css?7.1.34" title="aaa" /> 
<link rel="stylesheet" type="text/css" href="bbb.css?7.1.34" title="bbb" />
Copy after login

ok, we can now add a link to switch styles in the page:

<a href="#" onclick="setactivestylesheet('',1); return false;">默认样式-白色</a> 
<a href="#" onclick="setactivestylesheet('aaa',1); return false;">样式一-蓝色</a> 
<a href="#" onclick="setactivestylesheet('bbb',1); return false;">样式二-橙色</a>
Copy after login

now that we are done, let’s test our results above and see the effect.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "<a rel="nofollow" href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>"> 
<html xmlns="<a rel="nofollow" href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>阿Q家园</title> 
<link rel="stylesheet"  type="text/CSS" href="<a rel="nofollow" href="http://www.52css.com/attachments/month_0701/r2007128164252.css?7.1.34" target="_blank">http://www.52css.com/attachments/month_0701/r2007128164252.css</a>"  /> 
<link rel="stylesheet" type="text/CSS" href="<a rel="nofollow" href="http://www.52css.com/attachments/month_0701/c2007128164223.css?7.1.34" target="_blank">http://www.52css.com/attachments/month_0701/c2007128164223.css</a>" title="aaa" /> 
<link rel="stylesheet" type="text/CSS" href="<a rel="nofollow" href="http://www.52css.com/attachments/month_0701/h2007128164239.css?7.1.34" target="_blank">http://www.52css.com/attachments/month_0701/h2007128164239.css</a>" title="bbb" /> 
<script type="text/javascript"> 
function setActiveStyleSheet(title) { 
  var i, a, main; 
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { 
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) { 
      a.disabled = true; 
      if(a.getAttribute("title") == title) a.disabled = false; 
    } 
  } 
} 

function getActiveStyleSheet() { 
  var i, a; 
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { 
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title"); 
  } 
  return null; 
} 

function getPreferredStyleSheet() { 
  var i, a; 
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { 
    if(a.getAttribute("rel").indexOf("style") != -1 
       && a.getAttribute("rel").indexOf("alt") == -1 
       && a.getAttribute("title") 
       ) return a.getAttribute("title"); 
  } 
  return null; 
} 

function createCookie(name,value,days) { 
  if (days) { 
    var date = new Date(); 
    date.setTime(date.getTime()+(days*24*60*60*1000)); 
    var expires = "; expires="+date.toGMTString(); 
  } 
  else expires = ""; 
  documents.cookie = name+"="+value+expires+"; path=/"; 
} 

function readCookie(name) { 
  var nameEQ = name + "="; 
  var ca = documents.cookie.split(';'); 
  for(var i=0;i < ca.length;i++) { 
    var c = ca[i]; 
    while (c.charAt(0)==' ') c = c.substring(1,c.length); 
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); 
  } 
  return null; 
} 

window.onload = function(e) { 
  var cookie = readCookie("style"); 
  var title = cookie ? cookie : getPreferredStyleSheet(); 
  setActiveStyleSheet(title); 
} 

window.onunload = function(e) { 
  var title = getActiveStyleSheet(); 
  createCookie("style", title, 365); 
} 

var cookie = readCookie("style"); 
var title = cookie ? cookie : getPreferredStyleSheet(); 
setActiveStyleSheet(title); 
</script> 
</head> 
<body> 
<a href="#" onclick="setActiveStyleSheet('',1); return false;">默认样式-白色</a> 
<a href="#" onclick="setActiveStyleSheet('aaa',1); return false;">样式一-蓝色</a> 
<a href="#" onclick="setActiveStyleSheet('bbb',1); return false;">样式二-橙色</a> 
<p></p> 
</body> 
</html>
Copy after login


Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Demystifying Screen Readers: Accessible Forms & Best Practices Demystifying Screen Readers: Accessible Forms & Best Practices Mar 08, 2025 am 09:45 AM

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

Create a JavaScript Contact Form With the Smart Forms Framework Create a JavaScript Contact Form With the Smart Forms Framework Mar 07, 2025 am 11:33 AM

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

Adding Box Shadows to WordPress Blocks and Elements Adding Box Shadows to WordPress Blocks and Elements Mar 09, 2025 pm 12:53 PM

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let&#039;s look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Working With GraphQL Caching Working With GraphQL Caching Mar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte Transition Making Your First Custom Svelte Transition Mar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Classy and Cool Custom CSS Scrollbars: A Showcase Classy and Cool Custom CSS Scrollbars: A Showcase Mar 10, 2025 am 11:37 AM

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand

Show, Don't Tell Show, Don't Tell Mar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

What the Heck Are npm Commands? What the Heck Are npm Commands? Mar 15, 2025 am 11:36 AM

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.

See all articles