web
韭浪
以个人笔记为主,文章bug多,经常改动,无需关注
展开
-
【js】监听输入框,填入数据
$("#src_input").blur(function(){ var val = $(this).val(); if (val == '') return; $.ajax({ type: 'get', url: "/get-list", dataType : 'json', success: function(res) { if (res.code == 0){原创 2020-11-27 12:33:36 · 343 阅读 · 0 评论 -
【web】视差滚动
效果无插件<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script><style type="text/css"> .parallax { height: 550px; background-attachment: fixed; background-size: cover; /* background-repeat: no-rep原创 2020-09-25 17:48:27 · 319 阅读 · 0 评论