Sass 的变量包括三个部分
声明变量的符号“$”
变量名称
赋予变量的值
$width:100px
...
yekong
3年前 (2021-08-18)
喜欢
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
...
yekong
3年前 (2021-08-16)
喜欢
demo
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content=...
yekong
3年前 (2021-08-15)
喜欢
"update_check": false
...
yekong
3年前 (2021-08-15)
喜欢
经纬度转为数字,苹果可能是传为字符串导致无法访问
wx.getLocation({
type: 'wgs84',
success: function(res) {
...
yekong
3年前 (2021-08-14)
喜欢
document.oncopy = function () {
return false;
};
document.onmousedown = function (e) {
if (e.which == 2) {
return false...
yekong
3年前 (2021-08-14)
喜欢
Wxml
<input
type="number"
:placeholder="placeTips"
placeholder-style="font-size:24rpx"
v-model=&quo...
yekong
3年前 (2021-08-13)
喜欢
使用parseFloat处理一下经纬度避免出现经纬度是字符串的情况
wx.openLocation({
latitude: parseFloat(lat), // 纬度,浮点数,范围为90 ~ -90
longitude: pars...
yekong
3年前 (2021-08-13)
喜欢
方法一: indexOf()
var str = "123"
console.log(str.indexOf("2") != -1); // true
方法二:match()
var str = "123"
var r...
yekong
3年前 (2021-08-12)
喜欢
const t = '2019-10-17';
const dateFormat = 'YYYY-MM-DD';
//使用moment.js获取当前月份1号
const m = moment().startOf('month')...
yekong
3年前 (2021-07-26)
喜欢