Project ScenarioAdd a custom watermark to the entire background of the project. You can change the watermark text, font color, etc. Implementation ideas
Achieve results Implementation Code <template> <div class="water-marker" > <div v-waterMarker="{text:'Carlo vest - All rights reserved',textColor:'rgba(180, 180, 180, 0.4)'}"> <div class="water-marker-item">Testing problem, testing problem, testing problem, testing problem, testing problem, testing problem</div> </div> </div> </template> <script> import waterMarker from '../../directive/test/waterMarker' export default { directives: { waterMarker }, data(){ return { } }, methods:{ } } </script> <style lang="scss"> .water-marker{ height: 300px; .water-marker-item{ line-height: 300px; } } </style> The waterMarker.js file is as follows: function addWaterMarker(str, parentNode, font, textColor) { // Watermark text, parent element, font, text color var can = document.createElement('canvas') parentNode.appendChild(can) can.width = 200 can.height = 150 can.style.display = 'none' var cans = can.getContext('2d') cans.rotate((-20 * Math.PI) / 180) cans.font = font || '16px Microsoft JhengHei' cans.fillStyle = textColor || 'rgba(180, 180, 180, 0.3)' cans.textAlign = 'left' cans.textBaseline = 'Middle' cans.fillText(str, can.width / 10, can.height / 2) parentNode.style.backgroundImage = 'url(' + can.toDataURL('image/png') + ')' } const waterMarker = { bind: function (el, binding) { addWaterMarker(binding.value.text, el, binding.value.font, binding.value.textColor) }, } export default waterMarker This is the end of this article about how to use custom instructions in Vue to add a watermark at the bottom of the page. For more relevant content about adding a watermark at the bottom of the Vue page, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Example of using CASE WHEN in MySQL sorting
>>: VSCode+CMake+Clang+GCC environment construction tutorial under win10
Flex layout is undoubtedly simple and easy to use...
Method 1: Use cmd command First, open our DOS win...
Table of contents Scene Introduction Plugin Imple...
rep / egrep Syntax: grep [-cinvABC] 'word'...
Promise is a new solution for asynchronous progra...
1. Conventional writing in vue2 // The parent com...
The Golden Rule No matter how many people are wor...
Key Points The CSS resize property allows you to ...
Copy code The code is as follows: <div id=&quo...
Table of contents Overview Index data structure B...
7 ways to implement a two-column layout with fixe...
Table of contents 1. Affairs: Four major characte...
Compared with FTP, SSH-based sftp service has bet...
The react version when writing this article is 16...
How to implement text icons through CSS /*icon st...