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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1246
24
How to Create an Animated Countdown Timer With HTML, CSS and JavaScript How to Create an Animated Countdown Timer With HTML, CSS and JavaScript Apr 11, 2025 am 11:29 AM

Have you ever needed a countdown timer on a project? For something like that, it might be natural to reach for a plugin, but it’s actually a lot more

HTML Data Attributes Guide HTML Data Attributes Guide Apr 11, 2025 am 11:50 AM

Everything you ever wanted to know about data attributes in HTML, CSS, and JavaScript.

A Proof of Concept for Making Sass Faster A Proof of Concept for Making Sass Faster Apr 16, 2025 am 10:38 AM

At the start of a new project, Sass compilation happens in the blink of an eye. This feels great, especially when it’s paired with Browsersync, which reloads

While You Weren't Looking, CSS Gradients Got Better While You Weren't Looking, CSS Gradients Got Better Apr 11, 2025 am 09:16 AM

One thing that caught my eye on the list of features for Lea Verou&#039;s conic-gradient() polyfill was the last item:

A Comparison of Static Form Providers A Comparison of Static Form Providers Apr 16, 2025 am 11:20 AM

Let’s attempt to coin a term here: "Static Form Provider." You bring your HTML

How to Build Vue Components in a WordPress Theme How to Build Vue Components in a WordPress Theme Apr 11, 2025 am 11:03 AM

The inline-template directive allows us to build rich Vue components as a progressive enhancement over existing WordPress markup.

PHP is A-OK for Templating PHP is A-OK for Templating Apr 11, 2025 am 11:04 AM

PHP templating often gets a bad rap for facilitating subpar code — but that doesn&#039;t have to be the case. Let’s look at how PHP projects can enforce a basic

The Three Types of Code The Three Types of Code Apr 11, 2025 pm 12:02 PM

Every time I start a new project, I organize the code I’m looking at into three types, or categories if you like. And I think these types can be applied to

See all articles