uniapp dynamic modification of element node style detailed explanation

uniapp dynamic modification of element node style detailed explanation

1. Modify by binding the style attribute

The first step: you must get the element node

There is no windou object in the uniApp project, so the dom node cannot be directly obtained through the document. The refs of vue are only valid for custom components and not for tags in uniapp.

Check the uniapp official website for a uni.createSelectorQuery() API; you can use this property to get the style of the label and then modify it by dynamically binding the style;

html:

<button type="default" @click="handleFont">Click to increase font</button>
<view class="weibo_box" id='index0' :style="{fontSize:vHeight + 'px'}">

Corresponding js:

data(){
	return {
		vHeight:22
	}
},


handleFont(){
	const that=this
	uni.createSelectorQuery().select('#index0').boundingClientRect(function (data) { 
	  console.log('element information 0:', data)
		  that.vHeight +=10
	}).exec()
}

The effect achieved:

insert image description here

Second, use ref to get the DOM element node

Code:

<button type="default" @click="handleFont">Click to increase font</button>
<view class="weibo_box" id='index1' ref="mydom">
	The second one
data(){
	return {
		vHeight:22
	}
},
//Some codes are irrelevant, omit handleFont(){
	const that=this
	that.$refs.mydom.$el.style.fontSize=that.vHeight+=1+'px'
}

The effect achieved:

insert image description here

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of the difference between uniapp and vue
  • Detailed explanation of uniapp painless token refresh method
  • Detailed explanation of uniapp's global variable implementation
  • Detailed explanation of styles in uni-app

<<:  How to quickly copy large files under Linux

>>:  Summary of knowledge points related to null (IFNULL, COALESCE and NULLIF) in MySQL

Recommend

MySQL Server IO 100% Analysis and Optimization Solution

Preface During the stress test, if the most direc...

Detailed explanation of virtual DOM in Vue source code analysis

Why do we need virtual dom? Virtual DOM is design...

An article to deal with Mysql date and time functions

Table of contents Preface 1. Get the current time...

Vue2/vue3 routing permission management method example

1. There are generally two methods for Vue routin...

Example code for using text-align and margin: 0 auto to center in CSS

Use text-align, margin: 0 auto to center in CSS W...

Introduction to Vue3 Composition API

Table of contents Overview Example Why is it need...

Complete steps of centos cloning linux virtual machine sharing

Preface When a Linux is fully set up, you can use...

The principle and application of MySQL connection query

Overview One of the most powerful features of MyS...

Working principle and example analysis of Linux NFS mechanism

What is NFS? network file system A method or mech...

MySQL 5.7.21 installation and password configuration tutorial

MySQL5.7.21 installation and password setting tut...

Three ways to align div horizontal layout on both sides

This article mainly introduces three methods of i...

Not a Chinese specialty: Web development under cultural differences

Web design and development is hard work, so don&#...

Create a movable stack widget function using flutter

This post focuses on a super secret Flutter proje...

A record of a Linux server intrusion emergency response (summary)

Recently, we received a request for help from a c...